Repository: mina
Updated Branches:
  refs/heads/2.0 65d730b9d -> 0b623816f


Removed some System.out

Project: http://git-wip-us.apache.org/repos/asf/mina/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina/commit/64726a8f
Tree: http://git-wip-us.apache.org/repos/asf/mina/tree/64726a8f
Diff: http://git-wip-us.apache.org/repos/asf/mina/diff/64726a8f

Branch: refs/heads/2.0
Commit: 64726a8fe75ffd62e9543954bc92066e4fc9a1f8
Parents: 65d730b
Author: Emmanuel Lécharny <[email protected]>
Authored: Mon Dec 22 09:37:30 2014 +0100
Committer: Emmanuel Lécharny <[email protected]>
Committed: Mon Dec 22 09:37:30 2014 +0100

----------------------------------------------------------------------
 .../src/test/java/org/apache/mina/filter/ssl/SslTest.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina/blob/64726a8f/mina-core/src/test/java/org/apache/mina/filter/ssl/SslTest.java
----------------------------------------------------------------------
diff --git a/mina-core/src/test/java/org/apache/mina/filter/ssl/SslTest.java 
b/mina-core/src/test/java/org/apache/mina/filter/ssl/SslTest.java
index 5f577dd..865fbb3 100644
--- a/mina-core/src/test/java/org/apache/mina/filter/ssl/SslTest.java
+++ b/mina-core/src/test/java/org/apache/mina/filter/ssl/SslTest.java
@@ -75,10 +75,10 @@ public class SslTest {
             String line = (String) message;
 
             if (line.startsWith("hello")) {
-                System.out.println("Server got: 'hello', waiting for 'send'");
+                //System.out.println("Server got: 'hello', waiting for 
'send'");
                 Thread.sleep(1500);
             } else if (line.startsWith("send")) {
-                System.out.println("Server got: 'send', sending 'data'");
+                //System.out.println("Server got: 'send', sending 'data'");
                 StringBuilder sb = new StringBuilder();
                 
                 for ( int i = 0; i < 10000; i++) {
@@ -131,18 +131,18 @@ public class SslTest {
         Socket parent = new Socket(address, port);
         Socket socket = factory.createSocket(parent, 
address.getCanonicalHostName(), port, false);
 
-        System.out.println("Client sending: hello");
+        //System.out.println("Client sending: hello");
         socket.getOutputStream().write("hello                      
\n".getBytes());
         socket.getOutputStream().flush();
         socket.setSoTimeout(1000000);
 
-        System.out.println("Client sending: send");
+        //System.out.println("Client sending: send");
         socket.getOutputStream().write("send\n".getBytes());
         socket.getOutputStream().flush();
 
         BufferedReader in = new BufferedReader(new 
InputStreamReader(socket.getInputStream()));
         String line = in.readLine();
-        System.out.println("Client got: " + line);
+        //System.out.println("Client got: " + line);
         socket.close();
 
     }

Reply via email to