[222747] cdamus - [OCL] Bug in CollectionTypeImpl (Ecore Binding)
diff --git a/plugins/org.eclipse.ocl.ecore/src/org/eclipse/ocl/ecore/impl/CollectionTypeImpl.java b/plugins/org.eclipse.ocl.ecore/src/org/eclipse/ocl/ecore/impl/CollectionTypeImpl.java
index 126b36b..fb24fe4 100644
--- a/plugins/org.eclipse.ocl.ecore/src/org/eclipse/ocl/ecore/impl/CollectionTypeImpl.java
+++ b/plugins/org.eclipse.ocl.ecore/src/org/eclipse/ocl/ecore/impl/CollectionTypeImpl.java
@@ -12,7 +12,7 @@
  * 
  * </copyright>
  *
- * $Id: CollectionTypeImpl.java,v 1.8 2008/01/03 17:13:19 cdamus Exp $
+ * $Id: CollectionTypeImpl.java,v 1.9 2008/03/14 19:59:33 cdamus Exp $
  */
 package org.eclipse.ocl.ecore.impl;
 
@@ -445,7 +445,7 @@
                 // I *am* the standard library type!
                 iterators = new BasicEList.FastCompare<EOperation>(
                         OCLStandardLibraryImpl.getExistingOperations(this));
-                iterators = OCLStandardLibraryImpl.selectIterators(operations);
+                iterators = OCLStandardLibraryImpl.selectIterators(iterators);
             } else {
                 // the prototype defines my iterators for me
                 iterators = prototype.oclIterators();