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: 0ceadfeebf9bf294d5201a641922efba3b8a66be
15 lines
190 B
Java
15 lines
190 B
Java
// "Remove redundant assignment" "true-preview"
|
|
class A {
|
|
A a = null;
|
|
String m(String str) {
|
|
return str;
|
|
}
|
|
|
|
{
|
|
String ss = "";
|
|
|
|
System.out.println();
|
|
|
|
a.m(ss);
|
|
}
|
|
} |