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:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
package org.test;
|
||||
|
||||
public class LoopedFunctionClass implements LoopedInterface1 {
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
package org.test;
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
public interface LoopedInterface1 extends LoopedInterface2 {
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
package org.test;
|
||||
|
||||
public interface LoopedInterface2 /* extends LoopedInterface1 */ {
|
||||
}
|
||||
Reference in New Issue
Block a user