Changeset 27242 in osm for applications/editors/josm/plugins/CommandLine
- Timestamp:
- 2011-12-15T18:16:10+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r27119 r27242 4 4 <property name="commit.message" value="Moar bugfixes"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="4 549"/>6 <property name="plugin.main.version" value="4645"/> 7 7 <!-- 8 8 ************************************************ -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r25841 r27242 63 63 import org.openstreetmap.josm.io.GpxWriter; 64 64 import org.openstreetmap.josm.io.OsmWriter; 65 import org.openstreetmap.josm.io.OsmWriterFactory; 65 66 import org.openstreetmap.josm.plugins.Plugin; 66 67 import org.openstreetmap.josm.plugins.PluginInformation; … … 499 500 try { printWriter = new PrintWriter(new OutputStreamWriter(outputStream, "utf-8")); } 500 501 catch (Exception e) {e.printStackTrace();} 501 final OsmWriter osmWriter = newOsmWriter(printWriter, true, null);502 final OsmWriter osmWriter = OsmWriterFactory.createOsmWriter(printWriter, true, null); 502 503 Collection<OsmPrimitive> refObjects = currentCommand.getDepsObjects(); 503 504 Collection<OsmPrimitive> pObjects;
Note:
See TracChangeset
for help on using the changeset viewer.