You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ra...@apache.org on 2008/02/06 23:38:12 UTC

svn commit: r619192 - /incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java

Author: rajith
Date: Wed Feb  6 14:38:12 2008
New Revision: 619192

URL: http://svn.apache.org/viewvc?rev=619192&view=rev
Log:
Removed the System.outs from the code.

Modified:
    incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java

Modified: incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java?rev=619192&r1=619191&r2=619192&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java (original)
+++ incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java Wed Feb  6 14:38:12 2008
@@ -58,10 +58,8 @@
 
             public void exception(Throwable t)
             {
-                System.out.println("notifying listener");
                 if (_closedListner != null)
                 {
-                    System.out.println("notifying listener2");
                     _closedListner.onClosed(ErrorCode.CONNECTION_ERROR,ErrorCode.CONNECTION_ERROR.getDesc(),t);
                 }
                 else
@@ -72,7 +70,6 @@
 
             public void closed()
             {
-                System.out.println("notifying listener");
                 if (_closedListner != null && !this.receivedClose)
                 {
                     _closedListner.onClosed(ErrorCode.CONNECTION_ERROR,ErrorCode.CONNECTION_ERROR.getDesc(),null);
@@ -210,7 +207,6 @@
     {
 
         _closedListner = closedListner;
-        System.out.println("setting connection listener " + _closedListner);
     }
 
 }