summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java b/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
index 488d14bdf4..da34e191f7 100644
--- a/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
+++ b/qpid/java/bdbstore/src/test/java/org/apache/qpid/server/store/berkeleydb/VirtualHostTest.java
@@ -52,7 +52,6 @@ public class VirtualHostTest extends QpidTestCase
private Broker<?> _broker;
private StatisticsGatherer _statisticsGatherer;
private RecovererProvider _recovererProvider;
- private File _configFile;
private File _bdbStorePath;
private VirtualHost<?> _host;
private ConfigurationEntryStore _store;
@@ -68,7 +67,6 @@ public class VirtualHostTest extends QpidTestCase
when(taslExecutor.isTaskExecutorThread()).thenReturn(true);
when(_broker.getTaskExecutor()).thenReturn(taslExecutor);
-
_statisticsGatherer = mock(StatisticsGatherer.class);
_bdbStorePath = new File(TMP_FOLDER, getTestName() + "." + System.currentTimeMillis());
@@ -87,10 +85,6 @@ public class VirtualHostTest extends QpidTestCase
}
finally
{
- if (_configFile != null)
- {
- _configFile.delete();
- }
if (_bdbStorePath != null)
{
FileUtils.delete(_bdbStorePath, true);