Changeset 27242 in osm for applications/editors/josm/plugins/CommandLine/src
- Timestamp:
- 2011-12-15T18:16:10+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.