extract method: make static and pass fields as parameters if possible (IDEA-112230)

This commit is contained in:
Anna Kozlova
2014-12-03 14:27:46 +01:00
parent e540615904
commit 460771192f
8 changed files with 125 additions and 12 deletions
@@ -0,0 +1,6 @@
class X {
private int myI;
void foo() {
<selection>int i = myI;</selection>
}
}