Changeset 19485 in osm for applications/editors/josm


Ignore:
Timestamp:
2010-01-13T15:25:30+01:00 (15 years ago)
Author:
guggis
Message:

'Changed the constructor signature of the plugin main class'

Location:
applications/editors/josm/plugins/validator
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/build.xml

    r19335 r19485  
    2626          ** update before publishing
    2727        -->
    28         <property name="commit.message" value="Update to JOSM 2748" />
    29         <property name="plugin.main.version" value="2788" />
     28        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     29        <property name="plugin.main.version" value="2830" />
    3030
    3131
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/OSMValidatorPlugin.java

    r19335 r19485  
    3434import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    3535import org.openstreetmap.josm.plugins.Plugin;
     36import org.openstreetmap.josm.plugins.PluginInformation;
    3637import org.openstreetmap.josm.plugins.validator.tests.Coastlines;
    3738import org.openstreetmap.josm.plugins.validator.tests.CrossingWays;
     
    106107     * Creates the plugin
    107108     */
    108     public OSMValidatorPlugin() {
     109    public OSMValidatorPlugin(PluginInformation info) {
     110        super(info);
    109111        plugin = this;
    110112        checkPluginDir();
Note: See TracChangeset for help on using the changeset viewer.