mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
IDEA-323888 Replace 'side effect' dialog in Java quick-fixes with chooser GitOrigin-RevId: c89ef0ad65e69348de86e10a20686dbf9f8e0d57
16 lines
236 B
Java
16 lines
236 B
Java
// "Remove local variable 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private void run() {
|
|
k = 9;
|
|
if ((k = 9) == 0) {
|
|
k = 8;
|
|
}
|
|
while (1 > 0) ;
|
|
for (;; ) ;
|
|
}
|
|
}
|
|
|