mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
26 lines
458 B
Java
26 lines
458 B
Java
// Generated by delombok at Wed Oct 02 19:12:43 GMT 2019
|
|
|
|
class CleanupName {
|
|
void test() {
|
|
Object o = "Hello World!";
|
|
try {
|
|
System.out.println(o);
|
|
} finally {
|
|
if (java.util.Collections.singletonList(o).get(0) != null) {
|
|
o.toString();
|
|
}
|
|
}
|
|
}
|
|
|
|
void test2() {
|
|
Object o = "Hello World too!";
|
|
try {
|
|
System.out.println(o);
|
|
} finally {
|
|
if (java.util.Collections.singletonList(o).get(0) != null) {
|
|
o.toString();
|
|
}
|
|
}
|
|
}
|
|
}
|