aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/DelegateExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples/DelegateExample_post.jpage')
-rw-r--r--usage_examples/DelegateExample_post.jpage2
1 files changed, 0 insertions, 2 deletions
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) {