Changeset 19475 in osm for applications


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

'Changed the constructor signature of the plugin main class'

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

Legend:

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

    r19300 r19475  
    2727<project name="routing" default="dist" basedir=".">
    2828
    29         <property name="commit.message" value="Update to JOSM 2748" />
    30         <property name="plugin.main.version" value="2748" />
     29        <property name="commit.message" value="Changed the constructor signature of the plugin main class" />
     30        <property name="plugin.main.version" value="2830" />
    3131
    3232        <!-- Define some properties -->
  • applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java

    r19066 r19475  
    2828package com.innovant.josm.plugin.routing;
    2929
    30 import static org.openstreetmap.josm.tools.I18n.marktr;
    3130import static org.openstreetmap.josm.tools.I18n.tr;
    3231
     
    4443import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
    4544import org.openstreetmap.josm.plugins.Plugin;
     45import org.openstreetmap.josm.plugins.PluginInformation;
    4646
    4747import com.innovant.josm.plugin.routing.actions.AddRouteNodeAction;
     
    127127     * Default Constructor
    128128     */
    129     public RoutingPlugin() {
    130         super();
     129    public RoutingPlugin(PluginInformation info) {
     130        super(info);
    131131        plugin = this; // Assign reference to the plugin class
    132132        DOMConfigurator.configure("log4j.xml");
Note: See TracChangeset for help on using the changeset viewer.