Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhussey2007-06-23 18:28:33 +0000
committerkhussey2007-06-23 18:28:33 +0000
commitc506785653f676bcaffd8c8907a9218f6038e0b8 (patch)
tree6b81c026fba0d522f2f3b08a79cb7f8beaafe370
parentef309121335937427a23425330648521f208d789 (diff)
downloadorg.eclipse.uml2-c506785653f676bcaffd8c8907a9218f6038e0b8.tar.gz
org.eclipse.uml2-c506785653f676bcaffd8c8907a9218f6038e0b8.tar.xz
org.eclipse.uml2-c506785653f676bcaffd8c8907a9218f6038e0b8.zip
[193764] Ensuring right list is returned.
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/VertexOperations.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/VertexOperations.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/VertexOperations.java
index b1ee1f693..b58aee145 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/VertexOperations.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/VertexOperations.java
@@ -8,7 +8,7 @@
* Contributors:
* IBM - initial API and implementation
*
- * $Id: VertexOperations.java,v 1.7 2007/05/04 20:35:34 khussey Exp $
+ * $Id: VertexOperations.java,v 1.8 2007/06/23 18:28:33 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.operations;
@@ -287,7 +287,7 @@ public class VertexOperations
}
}
- return new IncomingEList((InternalEObject) vertex,
+ return new OutgoingEList((InternalEObject) vertex,
UMLPackage.Literals.VERTEX__OUTGOING, outgoings);
}

Back to the top