From 88e816609719ddce967e14df801f757ea31db877 Mon Sep 17 00:00:00 2001 From: Sergey Ignatov Date: Fri, 26 Jan 2018 15:11:39 +0300 Subject: [PATCH] cleanup --- .../execution/testDiscovery/TestDiscoveryIndex.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/java/execution/impl/src/com/intellij/execution/testDiscovery/TestDiscoveryIndex.java b/java/execution/impl/src/com/intellij/execution/testDiscovery/TestDiscoveryIndex.java index 962878bb2faa..8531808a6046 100644 --- a/java/execution/impl/src/com/intellij/execution/testDiscovery/TestDiscoveryIndex.java +++ b/java/execution/impl/src/com/intellij/execution/testDiscovery/TestDiscoveryIndex.java @@ -45,7 +45,6 @@ import java.util.List; public class TestDiscoveryIndex implements Disposable { static final Logger LOG = Logger.getInstance(TestDiscoveryIndex.class); - //private volatile TestInfoHolder mySystemHolder; private final TestDataController myLocalTestRunDataController; private final TestDataController myRemoteTestRunDataController; @@ -62,10 +61,6 @@ public class TestDiscoveryIndex implements Disposable { myLocalTestRunDataController.getHolder(); // proactively init with maybe io costly compact })); } - - //{ - // setRemoteTestRunDataPath("C:\\ultimate\\system\\testDiscovery\\145.save"); - //} } public boolean hasTestTrace(@NotNull String testName) throws IOException { @@ -151,7 +146,6 @@ public class TestDiscoveryIndex implements Disposable { final ArrayList result = new ArrayList<>(localList.size()); for (int testNameId : localList.toNativeArray()) { if (testNameId < 0) { - int a = 1; continue; } result.add(localHolder.myTestNameEnumerator.valueOf(testNameId)); @@ -161,7 +155,6 @@ public class TestDiscoveryIndex implements Disposable { }); } - public Collection getTestModulesByMethodName(@NotNull String classFQName, @NotNull String methodName, String prefix) throws IOException { return myLocalTestRunDataController.withTestDataHolder(new ThrowableConvertor, IOException>() { @Override