Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java
index 9228dec61c..c1a9b31a92 100644
--- a/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java
+++ b/jpa/plugins/org.eclipse.jpt.utility/src/org/eclipse/jpt/utility/internal/model/value/CollectionValueModelWrapper.java
@@ -124,35 +124,6 @@ public abstract class CollectionValueModelWrapper
}
- // ********** CollectionValueModel implementation **********
-
- /**
- * wrappers cannot be modified - the underlying model must be modified directly
- */
- public void add(Object item) {
- throw new UnsupportedOperationException();
- }
-
- public void addAll(Collection items) {
- for (Iterator stream = items.iterator(); stream.hasNext(); ) {
- this.add(stream.next());
- }
- }
-
- /**
- * wrappers cannot be modified - the underlying model must be modified directly
- */
- public void remove(Object item) {
- throw new UnsupportedOperationException();
- }
-
- public void removeAll(Collection items) {
- for (Iterator stream = items.iterator(); stream.hasNext(); ) {
- this.remove(stream.next());
- }
- }
-
-
// ********** behavior **********
/**

Back to the top