aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {