mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
IDEA-323888 Replace 'side effect' dialog in Java quick-fixes with chooser GitOrigin-RevId: c89ef0ad65e69348de86e10a20686dbf9f8e0d57
12 lines
242 B
Java
12 lines
242 B
Java
// "Remove local variable 'problematic'" "true-preview"
|
|
class C {
|
|
Object foo() {return null;}
|
|
|
|
void case01() {
|
|
int i;
|
|
for(i = 10, foo(); (--i) > 0; ) {
|
|
System.out.println("index = " + i);
|
|
}
|
|
}
|
|
}
|