You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2009/11/11 21:40:05 UTC

svn commit: r835053 - /incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java

Author: cwiklik
Date: Wed Nov 11 20:40:05 2009
New Revision: 835053

URL: http://svn.apache.org/viewvc?rev=835053&view=rev
Log:
UIMA-1459 removed dead code

Modified:
    incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java

Modified: incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java
URL: http://svn.apache.org/viewvc/incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java?rev=835053&r1=835052&r2=835053&view=diff
==============================================================================
--- incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java (original)
+++ incubator/uima/uima-as/trunk/uimaj-as-activemq/src/main/java/org/apache/uima/adapter/jms/activemq/UimaDefaultMessageListenerContainer.java Wed Nov 11 20:40:05 2009
@@ -458,7 +458,6 @@
       } catch (Exception e) {
       }
     }
-    String brokerURL = ((ActiveMQConnectionFactory) connectionFactory).getBrokerURL();
     super.setConnectionFactory(connectionFactory);
   }
 
@@ -706,10 +705,6 @@
       endpoint.setDestination(aDestination);
       if (aDestination instanceof TemporaryQueue) {
         endpoint.setTempReplyDestination(true);
-        String serviceName = "";
-        if (controller != null) {
-          serviceName = ">>>Controller:" + controller.getComponentName();
-        }
         Object pojoListener = getPojoListener();
         if (pojoListener != null && pojoListener instanceof InputChannel) {
           ((JmsInputChannel) pojoListener).setListenerContainer(this);