(PaperCard pc)
| 410 | //should only be called from PaperCard.hasImage() |
| 411 | static HashMap<String, HashSet<String>> cachedContent=new HashMap<>(50000); |
| 412 | public static boolean hasImage(PaperCard pc) { |
| 413 | return hasImage(pc, false); |
| 414 | } |
| 415 | public static boolean hasImage(PaperCard pc, boolean update) { |
| 416 | Boolean editionHasImage = editionImageLookup.get(pc.getEdition()); |
| 417 | if (editionHasImage == null) { |