mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
7 lines
171 B
Java
7 lines
171 B
Java
// "Remove redundant 'toString()' call" "true-preview"
|
|
class Foo {
|
|
public static void main(String[] args) {
|
|
/*valuable comment!!!*/
|
|
String s = args[0];
|
|
}
|
|
} |