mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
introduce variable: case with unresolved reference and replace all
EA-90834 - AIOOBE: AbstractInplaceIntroducer.lambda$restoreState$
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
class Demo {
|
||||
void d(String s){
|
||||
System.out.println(<caret>s);
|
||||
System.out.println(s);
|
||||
System.out.println(s1);
|
||||
}
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
class Demo {
|
||||
void d(String s){
|
||||
String expr = s;
|
||||
System.out.println(expr);
|
||||
System.out.println(expr);
|
||||
System.out.println(expr);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user