Changeset 19413 in osm
- Timestamp:
- 2010-01-12T18:33:41+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/tageditor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r18976 r19413 28 28 29 29 30 <property name="commit.message" value=" Made build file more robust" />31 <property name="plugin.main.version" value="2 355" />30 <property name="commit.message" value="Uses new constructor for Plugin" /> 31 <property name="plugin.main.version" value="2830" /> 32 32 33 33 <!-- -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/TagEditorPlugin.java
r14323 r19413 2 2 3 3 import org.openstreetmap.josm.plugins.Plugin; 4 import org.openstreetmap.josm.plugins.PluginInformation; 4 5 5 6 public class TagEditorPlugin extends Plugin { … … 10 11 * constructor 11 12 */ 12 public TagEditorPlugin() { 13 public TagEditorPlugin(PluginInformation info) { 14 super(info); 13 15 action = new LaunchAction(); 14 16 }
Note:
See TracChangeset
for help on using the changeset viewer.