summaryrefslogtreecommitdiff
path: root/qpid/java/client/example
diff options
context:
space:
mode:
authorJonathan Robie <jonathan@apache.org>2010-04-16 20:20:04 +0000
committerJonathan Robie <jonathan@apache.org>2010-04-16 20:20:04 +0000
commit00735020f17f94088da3141a8a861767e35b9684 (patch)
treeb0c0531cd7d59b685463087953a832b018ba34b9 /qpid/java/client/example
parenta817a2afdfe9527886513346913f77da99c4a4e1 (diff)
downloadqpid-python-00735020f17f94088da3141a8a861767e35b9684.tar.gz
Removed exception listener
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@935070 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client/example')
-rw-r--r--qpid/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/qpid/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java b/qpid/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java
index 3de1bd2a61..8fa8191de9 100644
--- a/qpid/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/hello/Hello.java
+++ b/qpid/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);