mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
GitOrigin-RevId: d8ec1a80004ae2405f78b42a50df0ca2c994d5d3
6 lines
131 B
Java
6 lines
131 B
Java
// "Remove redundant 'toString()' call" "true"
|
|
class X {
|
|
void test(Object x) {
|
|
System.out.println(x.toStri<caret>ng());
|
|
}
|
|
} |