extract method: strip this/super from field qualifiers when method was made static (IDEA-153692)

This commit is contained in:
Anna.Kozlova
2016-04-01 11:38:39 +02:00
parent 3e84729387
commit 1e754b5579
2 changed files with 18 additions and 4 deletions
@@ -1,6 +1,6 @@
class X {
private int myI;
void foo() {
<selection>int i = myI;</selection>
<selection>int i = this.myI;</selection>
}
}