aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2011-07-14 14:44:25 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2011-07-14 14:44:25 +0200
commitaa1a0e7ac87f5e96a39d0bad670aa8c7b7df85d4 (patch)
tree7312ca3bcd8afdc1cc9b5b23c67d0ff027a2bedc
parent68b079d3129c8201fcffb898bf6155efdc393d0a (diff)
downloadlombok-aa1a0e7ac87f5e96a39d0bad670aa8c7b7df85d4.tar.gz
lombok-aa1a0e7ac87f5e96a39d0bad670aa8c7b7df85d4.tar.bz2
lombok-aa1a0e7ac87f5e96a39d0bad670aa8c7b7df85d4.zip
The site's lombok v. vanilla java examples included lombok annotations on the vanilla java side. Fabrizio Guidici found this one.
-rw-r--r--usage_examples/ConstructorExample_post.jpage2
-rw-r--r--usage_examples/DelegateExample_post.jpage2
2 files changed, 0 insertions, 4 deletions
diff --git a/usage_examples/ConstructorExample_post.jpage b/usage_examples/ConstructorExample_post.jpage
index 5f4aa987..8a2d5069 100644
--- a/usage_examples/ConstructorExample_post.jpage
+++ b/usage_examples/ConstructorExample_post.jpage
@@ -1,5 +1,3 @@
-@RequiredArgsConstructor(staticName = "of")
-@AllArgsConstructor(access = AccessLevel.PROTECTED)
public class ConstructorExample<T> {
private int x, y;
@NonNull private T description;
diff --git a/usage_examples/DelegateExample_post.jpage b/usage_examples/DelegateExample_post.jpage
index af2acc1a..4ece3b0e 100644
--- a/usage_examples/DelegateExample_post.jpage
+++ b/usage_examples/DelegateExample_post.jpage
@@ -8,7 +8,6 @@ public class DelegationExample {
boolean remove(Object item);
}
- @Delegate(types=SimpleCollection.class)
private final Collection<String> collection = new ArrayList<String>();
@java.lang.SuppressWarnings("all")
@@ -30,7 +29,6 @@ class ExcludesDelegateExample {
boolean addAll(Collection<? extends String> x);
}
- @Delegate(excludes=Add.class)
private final Collection<String> collection = new ArrayList<String>();
public boolean add(String item) {