You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2014/12/22 09:31:55 UTC

mina git commit: Removed some System.out

Repository: mina
Updated Branches:
  refs/heads/2.0 02a3c21d8 -> 65d730b9d


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/65d730b9
Tree: http://git-wip-us.apache.org/repos/asf/mina/tree/65d730b9
Diff: http://git-wip-us.apache.org/repos/asf/mina/diff/65d730b9

Branch: refs/heads/2.0
Commit: 65d730b9dd1015e005c71970cbe69609fb8531eb
Parents: 02a3c21
Author: Emmanuel Lécharny <el...@symas.com>
Authored: Mon Dec 22 09:31:46 2014 +0100
Committer: Emmanuel Lécharny <el...@symas.com>
Committed: Mon Dec 22 09:31:46 2014 +0100

----------------------------------------------------------------------
 .../test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina/blob/65d730b9/mina-core/src/test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java
----------------------------------------------------------------------
diff --git a/mina-core/src/test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java b/mina-core/src/test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java
index 406340f..e33df04 100644
--- a/mina-core/src/test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java
+++ b/mina-core/src/test/java/org/apache/mina/filter/ssl/SslDIRMINA937Test.java
@@ -72,10 +72,10 @@ public class SslDIRMINA937Test {
             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'");
                 session.write("data");
             }
         }