summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qpid/java/broker/src/test/java/org/apache/qpid/server/util/BrokerTestHelper.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/qpid/java/broker/src/test/java/org/apache/qpid/server/util/BrokerTestHelper.java b/qpid/java/broker/src/test/java/org/apache/qpid/server/util/BrokerTestHelper.java
index f510dcba4a..3be8927224 100644
--- a/qpid/java/broker/src/test/java/org/apache/qpid/server/util/BrokerTestHelper.java
+++ b/qpid/java/broker/src/test/java/org/apache/qpid/server/util/BrokerTestHelper.java
@@ -36,7 +36,6 @@ import org.apache.qpid.framing.BasicContentHeaderProperties;
import org.apache.qpid.framing.ContentHeaderBody;
import org.apache.qpid.framing.abstraction.MessagePublishInfo;
import org.apache.qpid.server.AMQChannel;
-import org.apache.qpid.server.configuration.ConfigurationEntryStore;
import org.apache.qpid.server.configuration.VirtualHostConfiguration;
import org.apache.qpid.server.configuration.store.JsonConfigurationEntryStore;
import org.apache.qpid.server.exchange.DefaultExchangeFactory;
@@ -206,20 +205,5 @@ public class BrokerTestHelper
return queue;
}
- public static String getTestProfileBrokerConfigurationStoreClassName()
- {
- final String storeClass = System.getProperty(BROKER_STORE_CLASS_NAME_KEY);
- return storeClass != null ? storeClass : JSON_BROKER_STORE_CLASS_NAME;
- }
-
- @SuppressWarnings("rawtypes")
- public static ConfigurationEntryStore createTestProfileBrokerConfigurationStore(String storeLocation) throws Exception
- {
- String className = getTestProfileBrokerConfigurationStoreClassName();
- Class classObject = Class.forName(className);
- ConfigurationEntryStore store = (ConfigurationEntryStore)classObject.newInstance();
- store.open(storeLocation);
- return store;
- }
}