diff options
author | Jonathan Robie <jonathan@apache.org> | 2010-04-16 20:20:04 +0000 |
---|---|---|
committer | Jonathan Robie <jonathan@apache.org> | 2010-04-16 20:20:04 +0000 |
commit | 23235d0ac179db5194d3b71c5b1db1fa07960fe9 (patch) | |
tree | ec560a7aed430630303f508b2d965ddfa4f0d38d /java/client/example | |
parent | a2313ce0fc34fbe4864445595e1db1955c4918a1 (diff) | |
download | qpid-python-23235d0ac179db5194d3b71c5b1db1fa07960fe9.tar.gz |
Removed exception listener
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@935070 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/example')
-rw-r--r-- | java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java index 3de1bd2a61..8fa8191de9 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java @@ -44,11 +44,6 @@ public class Hello { ConnectionFactory connectionFactory = (ConnectionFactory) context.lookup("qpidConnectionfactory"); Connection connection = connectionFactory.createConnection(); - connection.setExceptionListener(new ExceptionListener() { - public void onException(JMSException e) { - e.printStackTrace(); - } - }); connection.start(); Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); |