Files
openide/plugins/lombok/testData/after/CleanupName.java
Michail Plushnikov 5df26b4b2e updated expected tests
GitOrigin-RevId: 2d8405a4a852ac2a1c3c40f3e0948bffcb2152cd
2019-10-03 14:42:57 +03:00

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();
}
}
}
}