Index: /trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControl.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControl.java	(revision 5008)
+++ /trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControl.java	(revision 5009)
@@ -7,6 +7,4 @@
 /**
  * Manager class for remote control operations.
- *
- * To allow API there is a @see getVersion() method.
  *
  * IMPORTANT! increment the minor version on compatible API extensions
@@ -20,10 +18,4 @@
      */
     public static final BooleanProperty PROP_REMOTECONTROL_ENABLED = new BooleanProperty("remotecontrol.enabled", false);
-
-    /** API version
-     * IMPORTANT! update the version number on API changes.
-     */
-    static final int apiMajorVersion = 1;
-    static final int apiMinorVersion = 0;
 
     /**
@@ -43,9 +35,10 @@
      *
      * @return array of integer version numbers:
-     *    apiMajorVersion, apiMinorVersion, protocolMajorVersion, protocolMajorVersion
+     *    apiMajorVersion (obsolete), apiMinorVersion (obsolete), protocolMajorVersion, protocolMajorVersion
      */
+    @Deprecated
     public int[] getVersion()
     {
-        int versions[] = {apiMajorVersion, apiMinorVersion, protocolMajorVersion, protocolMajorVersion};
+        int versions[] = {1, 0, protocolMajorVersion, protocolMajorVersion};
         return versions;
     }
