extract method object: conditional exit; nullable check should be processed separately ( IDEA-52452 )

This commit is contained in:
anna
2010-05-11 14:42:12 +04:00
parent 5e7036a74d
commit 8be6b22b0a
13 changed files with 203 additions and 7 deletions
@@ -0,0 +1,9 @@
public class XXX {
void f<caret>oo() {
int i = 0 ;
bar(i);
System.out.println(i);
}
private void bar(int i){}
}