avoid println in the console output

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@467690 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-10-25 15:58:08 +00:00
parent b68267a341
commit 9ba6fcc40f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class RetroactiveConsumerTestWithLastImagePolicyWithWildcardTest extends
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);
}