remove uneeded log
authorNiki Roo <niki@nikiroo.be>
Mon, 22 Apr 2019 08:35:28 +0000 (10:35 +0200)
committerNiki Roo <niki@nikiroo.be>
Mon, 22 Apr 2019 08:35:28 +0000 (10:35 +0200)
src/be/nikiroo/utils/serial/server/Server.java

index 8e83d416fe7a653e5b008e2f9daf747a35ab7db1..2f23c288388bbc82315672dc3e375c39ec3622cc 100644 (file)
@@ -215,14 +215,6 @@ abstract class Server implements Runnable {
                        tracer.trace(name + ": server starting on port " + port + " ("
                                        + (ssl ? "SSL" : "plain text") + ")");
 
-                       String ciphers = "";
-                       for (String cipher : getAnonCiphers()) {
-                               if (!ciphers.isEmpty()) {
-                                       ciphers += ", ";
-                               }
-                               ciphers += cipher;
-                       }
-
                        while (started && !exiting) {
                                count(1);
                                final Socket s = ss.accept();