Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenn Hussey2018-03-20 19:20:00 +0000
committerKenn Hussey2018-03-20 19:20:00 +0000
commit421c403d43a48bc0c158ece986f515f4a8e20e2e (patch)
treeecddd75839783f3a1280e22c9b8e0ca40ea46f35
parent64a340c766dc4eb9b1ddc000a6f4a6916c7dcbc2 (diff)
downloadorg.eclipse.uml2-421c403d43a48bc0c158ece986f515f4a8e20e2e.tar.gz
org.eclipse.uml2-421c403d43a48bc0c158ece986f515f4a8e20e2e.tar.xz
org.eclipse.uml2-421c403d43a48bc0c158ece986f515f4a8e20e2e.zip
[532217] Regenerating based on latest EMF changes.
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/PackageOperations.java5
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/StateOperations.java2
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/PackageOperations.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/PackageOperations.java
index bb28ea16c..4d12c8ea5 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/PackageOperations.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/PackageOperations.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2016 IBM Corporation, Embarcadero Technologies, CEA, and others.
+ * Copyright (c) 2005, 2018 IBM Corporation, Embarcadero Technologies, CEA, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -148,7 +148,8 @@ public class PackageOperations
Element baseElement = getBaseElement(eObject);
return baseElement == null
? super.createCopy(eObject)
- : applyStereotype(baseElement, getTarget(eObject.eClass()), null);
+ : applyStereotype(baseElement, getTarget(eObject.eClass()),
+ null);
}
@Override
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/StateOperations.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/StateOperations.java
index e7dfe673d..c9d44f7d5 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/StateOperations.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/operations/StateOperations.java
@@ -400,7 +400,7 @@ public class StateOperations
if (redefinedRegion instanceof Region
&& ((Region) redefinedRegion).getSubvertices()
- .contains((State)redefinedElement)) {
+ .contains((State) redefinedElement)) {
return true;
}

Back to the top