Changeset 14406 in osm for applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
- Timestamp:
- 2009-04-06T23:05:49+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r14120 r14406 74 74 try { 75 75 // write to plugin dir 76 OsmWriter.output(new FileOutputStream(getPluginDir()+File.separator+"data.osm"), new OsmWriter.All(fromDataSet, true)); 76 OsmWriter w = new OsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, fromDataSet.version); 77 w.header(); 78 w.writeDataSources(fromDataSet); 79 w.writeContent(fromDataSet); 80 w.footer(); 77 81 78 82 // get the exec line
Note:
See TracChangeset
for help on using the changeset viewer.