mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
EA-33530 - AIOOBE: ExtractMethodProcessor.doExtract
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class Fest {
|
||||
public static void main(String[] args) {
|
||||
String f = "";
|
||||
<selection>System.out.println(f);</selection>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
class Fest {
|
||||
public static void main(String[] args) {
|
||||
String f = "";
|
||||
newMethod();
|
||||
}
|
||||
|
||||
private static void newMethod() {
|
||||
String f = ;
|
||||
System.out.println(f);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user