Changeset 30319 in osm for applications/editors/josm/plugins/CommandLine
- Timestamp:
- 2014-03-10T02:36:47+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r30203 r30319 4 4 <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="6 690"/>6 <property name="plugin.main.version" value="6906"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/CommandLine/src/CommandLine/OsmToCmd.java
r30145 r30319 41 41 import org.openstreetmap.josm.data.osm.WayData; 42 42 import org.openstreetmap.josm.io.IllegalDataException; 43 import org.openstreetmap.josm.io.OsmDataParsingException;44 43 import org.openstreetmap.josm.io.UTFInputStreamReader; 45 44 import org.openstreetmap.josm.tools.DateUtils; 45 import org.openstreetmap.josm.tools.XmlParsingException; 46 46 import org.xml.sax.Attributes; 47 47 import org.xml.sax.InputSource; … … 94 94 } 95 95 96 protected void throwException(String msg) throws OsmDataParsingException {97 throw new OsmDataParsingException(msg).rememberLocation(locator);96 protected void throwException(String msg) throws XmlParsingException { 97 throw new XmlParsingException(msg).rememberLocation(locator); 98 98 } 99 99
Note:
See TracChangeset
for help on using the changeset viewer.