summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2008-02-06 22:38:12 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2008-02-06 22:38:12 +0000
commit16b2214415090d952d6b8f57a34b03162e9e27b1 (patch)
tree2f42776ff08caccf4dc94da52c7977f36f63ca97 /java
parentc66bffc3622f107839aed2dbda9dd14fa8de1511 (diff)
downloadqpid-python-16b2214415090d952d6b8f57a34b03162e9e27b1.tar.gz
Removed the System.outs from the code.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@619192 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/client/src/main/java/org/apache/qpidity/nclient/Client.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/java/client/src/main/java/org/apache/qpidity/nclient/Client.java b/java/client/src/main/java/org/apache/qpidity/nclient/Client.java
index 5bbabc01b5..51a052bed5 100644
--- a/java/client/src/main/java/org/apache/qpidity/nclient/Client.java
+++ b/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);
}
}