Index: /applications/editors/josm/plugins/remotecontrol/build.xml
===================================================================
--- /applications/editors/josm/plugins/remotecontrol/build.xml	(revision 19470)
+++ /applications/editors/josm/plugins/remotecontrol/build.xml	(revision 19471)
@@ -28,6 +28,6 @@
 	
 	<!-- set before publising -->
-	<property name="commit.message" value="Update to JOSM r2748" />		
-	<property name="plugin.main.version" value="2748" />
+	<property name="commit.message" value="Changed the constructor signature of the plugin main class" />		
+	<property name="plugin.main.version" value="2830" />
 	
     <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
Index: /applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPlugin.java
===================================================================
--- /applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPlugin.java	(revision 19470)
+++ /applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPlugin.java	(revision 19471)
@@ -5,4 +5,5 @@
 import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
 import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
 
 /**
@@ -17,6 +18,7 @@
      * Creates the plugin, and starts the HTTP server
      */
-    public RemoteControlPlugin()
+    public RemoteControlPlugin(PluginInformation info)
     {
+    	super(info);
         restartServer();
     }
