(Map<String, Set<Long>> cache, String key, long id)
| 154 | } |
| 155 | |
| 156 | private void cacheEntry(Map<String, Set<Long>> cache, String key, long id) { |
| 157 | Set<Long> ids = cache.get(key); |
| 158 | if (ids == null) { |
| 159 | ids = new HashSet<>(); |
| 160 | cache.put(key, ids); |
| 161 | } |
| 162 | ids.add(id); |
| 163 | } |
| 164 | |
| 165 | public static File getMediaLibraryFolder() { |
| 166 | String userHome = System.getProperty("user.home"); |