Idea: add quick fix for replacing usages of deprecated "INSTANCE$" field

This commit is contained in:
Pavel V. Talanov
2015-10-07 17:34:44 +03:00
committed by Michael Bogdanov
parent d630c25f7d
commit f4ef9647b1
10 changed files with 136 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Replace with reference to 'INSTANCE' field" "true"
import a.A;
class B {
void bar() {
A.IN<caret>STANCE$.getName();
}
}