mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
[java-intentions] Qualify a method call with an outer class name: fixes after review
IJ-CR-21030 IDEA-255881 GitOrigin-RevId: 8e6b0c6acb9505e75356c4c23c80c5c66870cd41
This commit is contained in:
committed by
intellij-monorepo-bot
parent
092977bccf
commit
f0000950e6
@@ -0,0 +1,20 @@
|
||||
// "Qualify the call with 'B'" "true"
|
||||
class A {
|
||||
class B {
|
||||
class C {
|
||||
static String name() {
|
||||
return "";
|
||||
}
|
||||
|
||||
class D {
|
||||
static String name(String key) {
|
||||
return name(<caret>);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static String name() {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user