(String edition)
| 326 | } |
| 327 | |
| 328 | public static String getSetFolder(String edition) { |
| 329 | return !CACHE_CARD_PICS_SUBDIR.containsKey(edition) |
| 330 | ? StaticData.instance().getEditions().getCode2ByCode(edition) // by default 2-letter codes from MWS are used |
| 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; |
no test coverage detected