mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-09 22:36:53 +07:00
IDEA-323888 Replace 'side effect' dialog in Java quick-fixes with chooser GitOrigin-RevId: 215c1987ee33c6fd14f6fe987bbd491fa3b78343
8 lines
188 B
Java
8 lines
188 B
Java
// "Access static 'AClass.stat' via class 'AClass' reference" "true-preview"
|
|
|
|
class AClass {
|
|
static boolean stat;
|
|
void foo (boolean stat) {
|
|
this.stat<caret> = stat;
|
|
}
|
|
} |