You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2015/02/26 16:40:38 UTC

activemq git commit: Remove the AMQ option from the PersistenceAdapterChose enum as that one is long gone.

Repository: activemq
Updated Branches:
  refs/heads/master 36bd069e8 -> f00d2fbde


Remove the AMQ option from the PersistenceAdapterChose enum as that one
is long gone. 

Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/f00d2fbd
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/f00d2fbd
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/f00d2fbd

Branch: refs/heads/master
Commit: f00d2fbde4b4dca72a8fd961ef8d5895e1b80584
Parents: 36bd069
Author: Timothy Bish <ta...@gmail.com>
Authored: Thu Feb 26 10:40:18 2015 -0500
Committer: Timothy Bish <ta...@gmail.com>
Committed: Thu Feb 26 10:40:18 2015 -0500

----------------------------------------------------------------------
 .../src/test/java/org/apache/activemq/TestSupport.java           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/f00d2fbd/activemq-unit-tests/src/test/java/org/apache/activemq/TestSupport.java
----------------------------------------------------------------------
diff --git a/activemq-unit-tests/src/test/java/org/apache/activemq/TestSupport.java b/activemq-unit-tests/src/test/java/org/apache/activemq/TestSupport.java
index 7b11271..37a74f9 100755
--- a/activemq-unit-tests/src/test/java/org/apache/activemq/TestSupport.java
+++ b/activemq-unit-tests/src/test/java/org/apache/activemq/TestSupport.java
@@ -25,9 +25,9 @@ import javax.jms.Destination;
 import javax.jms.JMSException;
 import javax.jms.Message;
 import javax.jms.TextMessage;
-
 import javax.management.MalformedObjectNameException;
 import javax.management.ObjectName;
+
 import org.apache.activemq.broker.BrokerRegistry;
 import org.apache.activemq.broker.BrokerService;
 import org.apache.activemq.broker.jmx.QueueViewMBean;
@@ -186,7 +186,7 @@ public abstract class TestSupport extends CombinationTestSupport {
         return proxy;
     }
 
-    public static enum PersistenceAdapterChoice {LevelDB, KahaDB, AMQ, JDBC, MEM };
+    public static enum PersistenceAdapterChoice {LevelDB, KahaDB, JDBC, MEM };
 
     public PersistenceAdapter setDefaultPersistenceAdapter(BrokerService broker) throws IOException {
         return setPersistenceAdapter(broker, defaultPersistenceAdapter);