()
| 94 | private static final Map<String, File> cachedCards = new HashMap<>(50000); |
| 95 | public static HashSet<String> missingCards = new HashSet<>(); |
| 96 | public static void clearMissingCards() { |
| 97 | missingCards.clear(); |
| 98 | } |
| 99 | public static File getCachedCardsFile(String key) { |
| 100 | return cachedCards.get(key); |
| 101 | } |
no test coverage detected