mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
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);
|
|
}
|
|
} |