@Getter(lazy=true) now also works in Eclipse

This commit is contained in:
Roel Spilker
2010-11-11 05:55:15 +01:00
parent a9113718ae
commit 3f00e7c905
13 changed files with 570 additions and 22 deletions
@@ -22,4 +22,7 @@ class GetterLazyNative {
@lombok.Getter(lazy=true)
private final char charField = '1';
@lombok.Getter(lazy=true)
private final int[] intArrayField = new int[] {1};
}