[AMQ-6603] pull unnecessary guava dep from the new test

(cherry picked from commit eab9a0d057)
This commit is contained in:
gtully 2017-03-01 15:25:57 +00:00 committed by Timothy Bish
parent 4c5a70421c
commit 2dfe0c7c29
1 changed files with 0 additions and 3 deletions

View File

@ -16,7 +16,6 @@
*/
package org.apache.activemq.pool;
import com.google.common.base.Strings;
import org.apache.activemq.broker.BrokerPlugin;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.ActiveMQDestination;
@ -122,9 +121,7 @@ public class PooledConsumerTest {
TextMessage textMessage = (TextMessage) message;
try {
String response = textMessage.getText();
LOGGER.info(Strings.repeat("=", 50));
LOGGER.info("Received: '{}'", response);
LOGGER.info(Strings.repeat("=", 50));
} catch (Exception e) {
LOGGER.error(e.getMessage(), e);
}