Changeset 25059 in osm for applications


Ignore:
Timestamp:
2011-01-16T13:29:07+01:00 (13 years ago)
Author:
hind
Message:

Small bugfix for correct xml file opening

Location:
applications/editors/josm
Files:
3 edited

Legend:

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

    r25052 r25059  
    33
    44    <!-- enter the SVN commit message -->
    5     <property name="commit.message" value="New types imageryurl, imageryoffset and username" />
     5    <property name="commit.message" value="Small bugfix for correct xml file opening" />
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    77    <property name="plugin.main.version" value="3751" />
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java

    r25052 r25059  
    5757        private void loadFile(SAXParser parser, String fileName) {
    5858                try {
    59                         parser.parse(fileName, this);
     59                        parser.parse(new File(fileName).toURI().toString(), this);
    6060                }
    6161                catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.