Ignore:
Timestamp:
2014-03-10T02:36:47+01:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] update to JOSM 6906

Location:
applications/editors/josm/plugins/CommandLine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/build.xml

    r30203 r30319  
    44    <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="6690"/>
     6    <property name="plugin.main.version" value="6906"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/OsmToCmd.java

    r30145 r30319  
    4141import org.openstreetmap.josm.data.osm.WayData;
    4242import org.openstreetmap.josm.io.IllegalDataException;
    43 import org.openstreetmap.josm.io.OsmDataParsingException;
    4443import org.openstreetmap.josm.io.UTFInputStreamReader;
    4544import org.openstreetmap.josm.tools.DateUtils;
     45import org.openstreetmap.josm.tools.XmlParsingException;
    4646import org.xml.sax.Attributes;
    4747import org.xml.sax.InputSource;
     
    9494        }
    9595
    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);
    9898        }
    9999
Note: See TracChangeset for help on using the changeset viewer.