diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 18:36:31 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-17 18:36:31 +0200 |
commit | 63a4938a7da6d49ed4ef182369faffb9e43e5368 (patch) | |
tree | 09c839e50adb6ec293ef26f345f1d4de4400bd9a /usage_examples | |
parent | 84d017e27047042c2299110fe08302840c45320d (diff) | |
download | lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.tar.gz lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.tar.bz2 lombok-63a4938a7da6d49ed4ef182369faffb9e43e5368.zip |
Added documentation for the @Data annotation. Also fixed whitespace issues in the snippet views, and removed a debug print in one of the snippets.
Diffstat (limited to 'usage_examples')
-rw-r--r-- | usage_examples/DataExample_pre.jpage | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usage_examples/DataExample_pre.jpage b/usage_examples/DataExample_pre.jpage index 890e648b..775f82ed 100644 --- a/usage_examples/DataExample_pre.jpage +++ b/usage_examples/DataExample_pre.jpage @@ -2,7 +2,6 @@ import lombok.AccessLevel; import lombok.Setter; import lombok.Data; -@lombok.core.PrintAST(printContent=true) public @Data class DataExample { private final String name; private @Setter(AccessLevel.PACKAGE) int age; |