mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
java highlight usages in file: highlight usages of a method when its super method is from alternative jdk
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package p;
|
||||
|
||||
public class Object7 {
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return 78;
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package p;
|
||||
|
||||
class Test {
|
||||
static void mmm(p.Object7 o) {
|
||||
o.has<caret>hCode();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user