1 2 3 4 5 6
class Cleanup { void test() throws Exception { @lombok.Cleanup("toString") Object o = "Hello World!"; System.out.println(o); } }