mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
11 lines
282 B
Java
11 lines
282 B
Java
// "Fix all 'Unnecessary call to 'toString()'' problems in file" "true"
|
|
public class MyFile {
|
|
interface UUID {}
|
|
interface InetAddress {}
|
|
|
|
void test(UUID uuid, InetAddress address) {
|
|
// IDEA-126310
|
|
String nodeString = uuid.toStr<caret>ing() + address.toString();
|
|
}
|
|
}
|