Changeset 19475 in osm for applications/editors/josm/plugins/routing/src
- Timestamp:
- 2010-01-13T15:13:48+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java
r19066 r19475 28 28 package com.innovant.josm.plugin.routing; 29 29 30 import static org.openstreetmap.josm.tools.I18n.marktr;31 30 import static org.openstreetmap.josm.tools.I18n.tr; 32 31 … … 44 43 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 45 44 import org.openstreetmap.josm.plugins.Plugin; 45 import org.openstreetmap.josm.plugins.PluginInformation; 46 46 47 47 import com.innovant.josm.plugin.routing.actions.AddRouteNodeAction; … … 127 127 * Default Constructor 128 128 */ 129 public RoutingPlugin( ) {130 super( );129 public RoutingPlugin(PluginInformation info) { 130 super(info); 131 131 plugin = this; // Assign reference to the plugin class 132 132 DOMConfigurator.configure("log4j.xml");
Note:
See TracChangeset
for help on using the changeset viewer.