Changeset 30755 in osm for applications/editors/josm/plugins/geotools
- Timestamp:
- 2014-10-20T21:27:03+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geotools/src/org/openstreetmap/josm/plugins/geotools/GeoToolsPlugin.java
r30734 r30755 47 47 // Update registry with com.sun.media.jai.imageioimpl.ImageReadWriteSpi (only class listed javax.media.jai.OperationRegistrySpi) 48 48 // it would be safer to parse this file instead, but a JAI update is very unlikely as it has not been modified since 2005 49 new ImageReadWriteSpi().updateRegistry(registry); 49 try { 50 new ImageReadWriteSpi().updateRegistry(registry); 51 } catch (IllegalArgumentException e) { 52 // See #10652: IllegalArgumentException: A descriptor is already registered against the name "ImageRead" under registry mode "rendered" 53 Main.warn("geotools: error in JAI/ImageReadWriteSpi initialization: "+e.getMessage()); 54 } 50 55 51 56 // Update registry with GeoTools registry file … … 56 61 registry.updateFromStream(in); 57 62 } 58 } catch (IOException e) {59 Main.error("geotools: error in JAI initialization: "+e.getMessage());63 } catch (IOException | IllegalArgumentException e) { 64 Main.error("geotools: error in JAI/GeoTools initialization: "+e.getMessage()); 60 65 } 61 66 }
Note:
See TracChangeset
for help on using the changeset viewer.