mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
extract method object: conditional exit; nullable check should be processed separately ( IDEA-52452 )
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
public class XXX {
|
||||
void f<caret>oo() {
|
||||
int i = 0 ;
|
||||
bar(i);
|
||||
System.out.println(i);
|
||||
}
|
||||
|
||||
void bazz() {
|
||||
bar(0);
|
||||
}
|
||||
|
||||
private void bar(int i){}
|
||||
}
|
||||
Reference in New Issue
Block a user