(String filename)
| 331 | : CACHE_CARD_PICS_SUBDIR.get(edition); // may use custom paths though |
| 332 | } |
| 333 | public static boolean hasSetLookup(String filename) { |
| 334 | if (filename == null) |
| 335 | return false; |
| 336 | if (!StaticData.instance().getSetLookup().isEmpty()) { |
| 337 | return StaticData.instance().getSetLookup().keySet().stream().anyMatch(filename::startsWith); |
| 338 | } |
| 339 | |
| 340 | return false; |
| 341 | } |
| 342 | public static File setLookUpFile(String filename, String fullborderFile) { |
| 343 | if (!StaticData.instance().getSetLookup().isEmpty()) { |
| 344 | for (String setKey : StaticData.instance().getSetLookup().keySet()) { |
no test coverage detected