mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
IDEA-323888 Replace 'side effect' dialog in Java quick-fixes with chooser GitOrigin-RevId: c89ef0ad65e69348de86e10a20686dbf9f8e0d57
15 lines
219 B
Java
15 lines
219 B
Java
// "Remove field 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
<caret>private void run() {
|
|
int j;
|
|
int k = 9;
|
|
if ((k = 9) == 0) {
|
|
k = 8;
|
|
}
|
|
if (3 ==0) ;
|
|
}
|
|
}
|
|
|