Changeset 19471 in osm
- Timestamp:
- 2010-01-13T15:11:27+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/remotecontrol
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/remotecontrol/build.xml
r19298 r19471 28 28 29 29 <!-- set before publising --> 30 <property name="commit.message" value=" Update to JOSM r2748" />31 <property name="plugin.main.version" value="2 748" />30 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 31 <property name="plugin.main.version" value="2830" /> 32 32 33 33 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPlugin.java
r16589 r19471 5 5 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 6 6 import org.openstreetmap.josm.plugins.Plugin; 7 import org.openstreetmap.josm.plugins.PluginInformation; 7 8 8 9 /** … … 17 18 * Creates the plugin, and starts the HTTP server 18 19 */ 19 public RemoteControlPlugin( )20 public RemoteControlPlugin(PluginInformation info) 20 21 { 22 super(info); 21 23 restartServer(); 22 24 }
Note:
See TracChangeset
for help on using the changeset viewer.