removed debug output and cyclic interface hierarchy test, seems to be the root cause of the issues and it not really needed anymore

This commit is contained in:
Martin Lippert
2020-12-27 14:13:47 +01:00
parent e78318032b
commit 03b41e4e83
7 changed files with 2 additions and 46 deletions

View File

@@ -120,10 +120,4 @@ public class SpringIndexerFunctionBeansTest {
SpringIndexerHarness.assertDocumentSymbols(indexer, docUri);
}
@Test
public void testScanInconsistentInterfaceHierarchy() throws Exception {
String docUri = directory.toPath().resolve("src/main/java/org/test/LoopedFunctionClass.java").toUri().toString();
SpringIndexerHarness.assertDocumentSymbols(indexer, docUri);
}
}

View File

@@ -1,4 +0,0 @@
package org.test;
public class LoopedFunctionClass implements LoopedInterface1 {
}

View File

@@ -1,6 +0,0 @@
package org.test;
import java.util.function.Function;
public interface LoopedInterface1 extends LoopedInterface2 {
}

View File

@@ -1,4 +0,0 @@
package org.test;
public interface LoopedInterface2 /* extends LoopedInterface1 */ {
}