mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
cleanup
This commit is contained in:
@@ -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<String> 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<String> getTestModulesByMethodName(@NotNull String classFQName, @NotNull String methodName, String prefix) throws IOException {
|
||||
return myLocalTestRunDataController.withTestDataHolder(new ThrowableConvertor<TestInfoHolder, Collection<String>, IOException>() {
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user