Add 'src/be/nikiroo/utils/' from commit '46add0670fdee4bd936a13fe2448c5e20a7ffd0a'
[fanfix.git] / src / be / nikiroo / utils / serial / server / ConnectActionServerString.java
index 545e4b79fdae73c494333240443bc2c47db57d29..8d113c1dc5db3fe968ed0f10b6fae59fbdb62be3 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 ConnectActionServerString extends ConnectActionServer {
        /**
-        * Create a new {@link ConnectActionServerString} with the current
-        * application version (see {@link Version#getCurrentVersion()}) as the
-        * server version.
+        * Create a new {@link ConnectActionServerString} as the server version.
         * 
         * @param s
         *            the socket to bind to
@@ -29,21 +25,6 @@ public class ConnectActionServerString extends ConnectActionServer {
                super(s, key);
        }
 
-       /**
-        * Create a new {@link ConnectActionServerString}.
-        * 
-        * @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 ConnectActionServerString(Socket s, String key, Version version) {
-               super(s, key, version);
-       }
-
        /**
         * Serialise and send the given object to the client.
         *