Changeset 25059 in osm for applications/editors
- Timestamp:
- 2011-01-16T13:29:07+01:00 (14 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r25052 r25059 3 3 4 4 <!-- 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" /> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 7 <property name="plugin.main.version" value="3751" /> -
applications/editors/josm/plugins/CommandLine/src/CommandLine/Loader.java
r25052 r25059 57 57 private void loadFile(SAXParser parser, String fileName) { 58 58 try { 59 parser.parse( fileName, this);59 parser.parse(new File(fileName).toURI().toString(), this); 60 60 } 61 61 catch (Exception e) {
Note:
See TracChangeset
for help on using the changeset viewer.