mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
extract method object: conditional exit; nullable check should be processed separately ( IDEA-52452 )
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
public class XXX {
|
||||
void foo() {
|
||||
new InnerClass().invoke();
|
||||
}
|
||||
|
||||
private class InnerClass {
|
||||
public void invoke() {
|
||||
int i = 0 ;
|
||||
bar(i);
|
||||
System.out.println(i);
|
||||
}
|
||||
|
||||
private void bar(int i){}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user