- Timestamp:
- 2018-05-08T12:50:17+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r13715 r13716 48 48 import java.util.Locale; 49 49 import java.util.Optional; 50 import java.util.ServiceConfigurationError;51 50 import java.util.concurrent.ExecutionException; 52 51 import java.util.concurrent.Executor; … … 73 72 import javax.xml.parsers.SAXParserFactory; 74 73 import javax.xml.validation.SchemaFactory; 74 import javax.xml.validation.SchemaFactoryConfigurationError; 75 75 76 76 import org.openstreetmap.josm.spi.preferences.Config; … … 1339 1339 try { 1340 1340 return SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); 1341 } catch (S erviceConfigurationError e) {1341 } catch (SchemaFactoryConfigurationError e) { 1342 1342 Logging.debug(e); 1343 1343 // Can happen with icedtea-web. Use workaround from https://issues.apache.org/jira/browse/GERONIMO-6185
Note:
See TracChangeset
for help on using the changeset viewer.