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: 0ceadfeebf9bf294d5201a641922efba3b8a66be
8 lines
133 B
Java
8 lines
133 B
Java
// "Remove redundant assignment" "true-preview"
|
|
class X {
|
|
void test() {
|
|
for (int i = 0; i < Integer.MAX_VALUE; ) {
|
|
|
|
}
|
|
}
|
|
} |