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
13 lines
167 B
Java
13 lines
167 B
Java
// "Remove local variable 'oo'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private int run() {
|
|
Object <caret>i = null;
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|