Changeset 31619 in osm for applications/editors/josm/plugins
- Timestamp:
- 2015-10-13T01:12:02+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/cache/CacheUtils.java
r31612 r31619 82 82 public static void submit(String key, MapillaryCache.Type type, 83 83 ICachedLoaderListener lis) { 84 new MapillaryCache(key, type).submit(lis, false); 84 try { 85 new MapillaryCache(key, type).submit(lis, false); 86 } catch (IOException e) { 87 Main.error(e); 88 } 85 89 } 86 90 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java
r31612 r31619 244 244 this.thumbnailCache = new MapillaryCache(mapillaryImage.getKey(), 245 245 MapillaryCache.Type.THUMBNAIL); 246 this.thumbnailCache.submit(this, false); 246 try { 247 this.thumbnailCache.submit(this, false); 248 } catch (IOException e) { 249 Main.error(e); 250 } 247 251 248 252 // Downloads the full resolution image. … … 252 256 this.imageCache = new MapillaryCache(mapillaryImage.getKey(), 253 257 MapillaryCache.Type.FULL_IMAGE); 254 this.imageCache.submit(this, false); 258 try { 259 this.imageCache.submit(this, false); 260 } catch (IOException e) { 261 Main.error(e); 262 } 255 263 } 256 264 } else if (this.image instanceof MapillaryImportedImage) {
Note:
See TracChangeset
for help on using the changeset viewer.