Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java')
-rw-r--r--plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java b/plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java
index 203d8dee6..9d4b608f0 100644
--- a/plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java
+++ b/plugins/org.eclipse.emf.compare.uml2.tests/profile/org/eclipse/emf/compare/uml2/profile/test/uml2comparetestprofile/impl/AClicheImpl.java
@@ -238,9 +238,8 @@ public class AClicheImpl extends EObjectImpl implements ACliche {
manyValuedReferenceLoop: for (org.eclipse.uml2.uml.Class manyValuedReference : getManyValuedReference()) {
if (eClass != null && !eClass.isInstance(manyValuedReference))
continue manyValuedReferenceLoop;
- if (name != null
- && !(ignoreCase ? name.equalsIgnoreCase(manyValuedReference.getName()) : name
- .equals(manyValuedReference.getName())))
+ if (name != null && !(ignoreCase ? name.equalsIgnoreCase(manyValuedReference.getName())
+ : name.equals(manyValuedReference.getName())))
continue manyValuedReferenceLoop;
return manyValuedReference;
}

Back to the top