Changeset 19485 in osm for applications/editors/josm/plugins/validator
- Timestamp:
- 2010-01-13T15:25:30+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/build.xml
r19335 r19485 26 26 ** update before publishing 27 27 --> 28 <property name="commit.message" value=" Update to JOSM 2748" />29 <property name="plugin.main.version" value="2 788" />28 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 29 <property name="plugin.main.version" value="2830" /> 30 30 31 31 -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/OSMValidatorPlugin.java
r19335 r19485 34 34 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 35 35 import org.openstreetmap.josm.plugins.Plugin; 36 import org.openstreetmap.josm.plugins.PluginInformation; 36 37 import org.openstreetmap.josm.plugins.validator.tests.Coastlines; 37 38 import org.openstreetmap.josm.plugins.validator.tests.CrossingWays; … … 106 107 * Creates the plugin 107 108 */ 108 public OSMValidatorPlugin() { 109 public OSMValidatorPlugin(PluginInformation info) { 110 super(info); 109 111 plugin = this; 110 112 checkPluginDir();
Note:
See TracChangeset
for help on using the changeset viewer.