Changeset 8640 in josm for trunk/src/org
- Timestamp:
- 2015-08-04T20:41:35+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
r8635 r8640 263 263 } 264 264 265 pr ivateboolean isCacheElementValid() {265 protected boolean isCacheElementValid() { 266 266 long expires = attributes.getExpirationTime(); 267 267 -
trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java
r8636 r8640 267 267 public Tile getCachedTile() { 268 268 BufferedImageCacheEntry data = get(); 269 if (isObjectLoadable() ) {269 if (isObjectLoadable() && isCacheElementValid()) { 270 270 try { 271 271 // set tile metadata
Note:
See TracChangeset
for help on using the changeset viewer.