Changeset 27243 in osm for applications/editors/josm/plugins/osmarender
- Timestamp:
- 2011-12-15T18:35:55+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r27019 r27243 34 34 <property name="xslt" location="./xslt"/> 35 35 <property name="commit.message" value="Fixed #4360 - osmarender plugin does not load"/> 36 <property name="plugin.main.version" value="4 549"/>36 <property name="plugin.main.version" value="4645"/> 37 37 <target name="init"> 38 38 <mkdir dir="${plugin.build.dir}"/> -
applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java
r23192 r27243 35 35 import org.openstreetmap.josm.gui.preferences.PreferenceTabbedPane; 36 36 import org.openstreetmap.josm.io.OsmWriter; 37 import org.openstreetmap.josm.io.OsmWriterFactory; 37 38 import org.openstreetmap.josm.plugins.Plugin; 38 39 import org.openstreetmap.josm.plugins.PluginInformation; … … 63 64 try { 64 65 // write to plugin dir 65 OsmWriter w = newOsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, "0.6");66 OsmWriter w = OsmWriterFactory.createOsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, "0.6"); 66 67 w.header(); 67 68
Note:
See TracChangeset
for help on using the changeset viewer.