You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/25 17:58:09 UTC

svn commit: r467690 - /incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java

Author: chirino
Date: Wed Oct 25 08:58:08 2006
New Revision: 467690

URL: http://svn.apache.org/viewvc?view=rev&rev=467690
Log:
avoid println in the console output

Modified:
    incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java

Modified: incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java?view=diff&rev=467690&r1=467689&r2=467690
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java (original)
+++ incubator/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/test/retroactive/RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest.java Wed Oct 25 08:58:08 2006
@@ -33,7 +33,7 @@
     
     protected void sendMessage(MessageProducer producer, TextMessage message) throws JMSException {
         ActiveMQTopic topic = new ActiveMQTopic(destination.toString() + "." + (counter++));
-        System.out.println("Sending to destination: " + topic);
+//        System.out.println("Sending to destination: " + topic);
         producer.send(topic, message);
     }