mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
java: avoid recursion prevention when checking imported vs inherited superclass (IDEA-67385, IDEA-228814)
GitOrigin-RevId: 2a246ced1d66c4c3c9df71dcd51a491b471a744c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b36538cfa5
commit
4b12b7a4e3
+1
-1
@@ -1,5 +1,5 @@
|
||||
package p;
|
||||
|
||||
public class BaseImpl implements Base {
|
||||
static class Inner implements Inner { }
|
||||
static class Inner implements Base.Inner { }
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package p;
|
||||
|
||||
public class BaseImpl implements Base {
|
||||
static class Inner implements BaseImpl.Inner { }
|
||||
static class Inner implements Base.Inner { }
|
||||
}
|
||||
Reference in New Issue
Block a user