mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
IDEA-151861 ExtractMethodObject should not move static methods into created inner class
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class XXX {
|
||||
void f<caret>oo() {
|
||||
int i = 0 ;
|
||||
bar(i);
|
||||
System.out.println(i);
|
||||
}
|
||||
|
||||
private static void bar(int i){}
|
||||
}
|
||||
Reference in New Issue
Block a user