Changeset 13436 in josm for trunk/src/org
- Timestamp:
- 2018-02-18T14:18:33+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
r12967 r13436 305 305 306 306 for (SourceEntry entry : sourceEntries) { 307 styles.add(fromSourceEntry(entry)); 307 try { 308 styles.add(fromSourceEntry(entry)); 309 } catch (IllegalArgumentException e) { 310 Logging.error("Failed to load map paint style {0}", entry); 311 Logging.error(e); 312 } 308 313 } 309 314 for (StyleSource source : styles.getStyleSources()) {
Note:
See TracChangeset
for help on using the changeset viewer.