Merge commit '77d3a60869e7a780c6ae069e51530e1eacece5e2'
[fanfix.git] / src / be / nikiroo / utils / serial / server / ConnectActionServerObject.java
index 79fa38ce616ec4535067dcc9830b4f4ea2ea01ca..07d986763438abeee1bc84e4ca97e984bf0688ee 100644 (file)
@@ -3,8 +3,6 @@ package be.nikiroo.utils.serial.server;
 import java.io.IOException;
 import java.net.Socket;
 
-import be.nikiroo.utils.Version;
-
 /**
  * Class used for the server basic handling.
  * <p>
@@ -15,9 +13,7 @@ import be.nikiroo.utils.Version;
  */
 public class ConnectActionServerObject extends ConnectActionServer {
        /**
-        * Create a new {@link ConnectActionServerObject} with the current
-        * application version (see {@link Version#getCurrentVersion()}) as the
-        * server version.
+        * Create a new {@link ConnectActionServerObject} as the server version.
         * 
         * @param s
         *            the socket to bind to
@@ -29,21 +25,6 @@ public class ConnectActionServerObject extends ConnectActionServer {
                super(s, key);
        }
 
-       /**
-        * Create a new {@link ConnectActionServerObject}.
-        * 
-        * @param s
-        *            the socket to bind to
-        * @param key
-        *            an optional key to encrypt all the communications (if NULL,
-        *            everything will be sent in clear text)
-        * @param version
-        *            the server version
-        */
-       public ConnectActionServerObject(Socket s, String key, Version version) {
-               super(s, key, version);
-       }
-
        /**
         * Serialise and send the given object to the client.
         *