Changeset 30532 in osm for applications/editors/josm/plugins/imagerycache/src/org/mapdb/CacheLRU.java
- Timestamp:
- 2014-07-14T04:18:06+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagerycache/src/org/mapdb/CacheLRU.java
r29484 r30532 78 78 Utils.lock(locks,recid); 79 79 Engine engine = getWrappedEngine(); 80 LongMap cache2 = checkClosed(cache);80 LongMap<Object> cache2 = checkClosed(cache); 81 81 Object oldValue = cache.get(recid); 82 82 if(oldValue == expectedOldValue || oldValue.equals(expectedOldValue)){ … … 94 94 } 95 95 } 96 97 96 98 97 @SuppressWarnings("rawtypes")
Note:
See TracChangeset
for help on using the changeset viewer.