aboutsummaryrefslogtreecommitdiff
path: root/usage_examples
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-07-17 18:36:31 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-07-17 18:36:31 +0200
commit63a4938a7da6d49ed4ef182369faffb9e43e5368 (patch)
tree09c839e50adb6ec293ef26f345f1d4de4400bd9a /usage_examples
parent84d017e27047042c2299110fe08302840c45320d (diff)
downloadlombok-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.jpage1
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;