Changeset 13314 in josm
- Timestamp:
- 2018-01-13T02:10:46+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r13195 r13314 61 61 import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.MapCSSParser; 62 62 import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.ParseException; 63 import org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.TokenMgrError; 63 64 import org.openstreetmap.josm.io.CachedFile; 64 65 import org.openstreetmap.josm.io.IllegalDataException; … … 776 777 Logging.warn(tr("Failed to add {0} to tag checker", i)); 777 778 Logging.log(Logging.LEVEL_WARN, ex); 778 } catch (ParseException ex) { 779 } catch (ParseException | TokenMgrError ex) { 779 780 Logging.warn(tr("Failed to add {0} to tag checker", i)); 780 781 Logging.warn(ex); … … 845 846 try { 846 847 tagChecker.addMapCSS(rule.url); 847 } catch (IOException | ParseException e) { 848 } catch (IOException | ParseException | TokenMgrError e) { 848 849 Logging.warn(e); 849 850 }
Note:
See TracChangeset
for help on using the changeset viewer.