aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/CleanupName.java
blob: cd29eb6860e27fb5c397d352a268dd830d4d9dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class CleanupName {
	void test() {
		Object o = "Hello World!";
		try {
			System.out.println(o);
		} finally {
			o.toString();
		}
	}
	void test2() {
		Object o = "Hello World too!";
		try {
			System.out.println(o);
		} finally {
			o.toString();
		}
	}
}