[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:
Andrey.Cherkasov
2022-02-18 17:20:13 +03:00
committed by intellij-monorepo-bot
parent 092977bccf
commit f0000950e6
25 changed files with 93 additions and 56 deletions

View File

@@ -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 "";
}
}
}