Updated tests to reflect changes to delombok (delombok now kills super(), because attrib adds them even in places where that's wrong).

Also split up the SynchronizedName test into separate cases for each expected failure mode.
This commit is contained in:
Reinier Zwitserloot
2012-07-16 22:04:39 +02:00
parent 2502862f89
commit e642150998
14 changed files with 54 additions and 19 deletions
@@ -0,0 +1,8 @@
class SynchronizedNameStaticToInstanceRef {
private Object read = new Object();
private static Object READ = new Object();
@lombok.Synchronized("read") static void test3() {
System.out.println("three");
}
}