@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
@@ -3,4 +3,6 @@
class GetterLazyEahcToString {
@lombok.Getter(lazy=true)
private final String value = "";
@lombok.Getter
private final String value2 = "";
}