(Box x, String t)
| 400 | } |
| 401 | |
| 402 | private boolean isExcluded(Box x, String t) { |
| 403 | if (t.equals("")) return false; |
| 404 | return x.properties.getOrConstruct(excludes) |
| 405 | .contains(t); |
| 406 | } |
| 407 | |
| 408 | private boolean isIncluded(Box x, String t) { |
| 409 | if (t.equals("")) return true; |
no test coverage detected