(HashSet<String> cache, String filename)
| 466 | } |
| 467 | |
| 468 | private static boolean hitCache(HashSet<String> cache, String filename) { |
| 469 | if (cache == null || cache.isEmpty()) |
| 470 | return false; |
| 471 | final String keyPrefix = filename.split("\\.")[0]; |
| 472 | return cache.contains(keyPrefix); |
| 473 | } |
| 474 | } |