Changeset 6248 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj
- Timestamp:
- 2013-09-23T16:47:50+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj
r5705 r6248 27 27 import org.openstreetmap.josm.tools.Pair; 28 28 import org.openstreetmap.josm.tools.Utils; 29 import org.openstreetmap.josm.Main; 29 30 30 31 public class MapCSSParser { … … 573 574 } 574 575 575 System.err.println("Skipping to the next rule, because of an error:");576 System.err.println(e);576 Main.error("Skipping to the next rule, because of an error:"); 577 Main.error(e); 577 578 if (sheet != null) { 578 579 sheet.logError(e); … … 598 599 t.image.contains("\n")) { 599 600 ParseException e = new ParseException(String.format("Warning: end of line while reading an unquoted string at line %s column %s.", t.beginLine, t.beginColumn)); 600 System.err.println(e);601 Main.error(e); 601 602 if (sheet != null) { 602 603 sheet.logError(e);
Note:
See TracChangeset
for help on using the changeset viewer.