...
[nikiroo-utils.git] / src / be / nikiroo / utils / serial / server / ConnectActionClientString.java
index 35a01d8233bfa0e189f094514298134a73e0d604..366070c6acc4cd5788d4811069eec6b48eb1e4bf 100644 (file)
@@ -56,47 +56,6 @@ public class ConnectActionClientString extends ConnectActionClient {
                super(host, port, key);
        }
 
-       /**
-        * Create a new {@link ConnectActionClientString}.
-        * 
-        * @param host
-        *            the host to bind to
-        * @param port
-        *            the port 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 client version
-        * 
-        * @throws IOException
-        *             in case of I/O error
-        * @throws UnknownHostException
-        *             if the IP address of the host could not be determined
-        * @throws IllegalArgumentException
-        *             if the port parameter is outside the specified range of valid
-        *             port values, which is between 0 and 65535, inclusive
-        */
-       public ConnectActionClientString(String host, int port, String key,
-                       Version version) throws IOException {
-               super(host, port, key, version);
-       }
-
-       /**
-        * Create a new {@link ConnectActionClientString}.
-        * 
-        * @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 client version
-        */
-       public ConnectActionClientString(Socket s, String key, Version version) {
-               super(s, key, version);
-       }
-
        /**
         * Send the given object to the server (and return the answer).
         *