diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2008-02-06 22:38:12 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2008-02-06 22:38:12 +0000 |
| commit | 197016f29134b32dee1bf0e2770359b38706d23f (patch) | |
| tree | d7e485c50c60a66dc7d0dcd90ee54aa4d0dcfc04 /qpid/java | |
| parent | f1ca5f19a2d6cb8db8bc89597ab649e00ea45dfb (diff) | |
| download | qpid-python-197016f29134b32dee1bf0e2770359b38706d23f.tar.gz | |
Removed the System.outs from the code.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@619192 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
| -rw-r--r-- | qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java b/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java index 5bbabc01b5..51a052bed5 100644 --- a/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java +++ b/qpid/java/client/src/main/java/org/apache/qpidity/nclient/Client.java @@ -58,10 +58,8 @@ public class Client implements org.apache.qpidity.nclient.Connection 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 class Client implements org.apache.qpidity.nclient.Connection 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 @@ public class Client implements org.apache.qpidity.nclient.Connection { _closedListner = closedListner; - System.out.println("setting connection listener " + _closedListner); } } |
