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
17 lines
270 B
Java
17 lines
270 B
Java
// "Remove local variable 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
private int run() {
|
|
<caret>int j;
|
|
int k = 9;
|
|
if ((k = 9) == 0) {
|
|
k = 8;
|
|
}
|
|
if (3 ==0) ;
|
|
else return (k);
|
|
return 0;
|
|
}
|
|
}
|
|
|