Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java')
-rw-r--r--plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java b/plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java
index 54da1ac51..ab65e1b1e 100644
--- a/plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java
+++ b/plugins/org.eclipse.emf.compare.uml2.edit/src/org/eclipse/emf/compare/uml2/internal/provider/custom/UMLDiffCustomItemProvider.java
@@ -87,16 +87,16 @@ public class UMLDiffCustomItemProvider extends UMLDiffItemProvider implements II
ret.append(" [" + referenceText, Style.DECORATIONS_STYLER); //$NON-NLS-1$
switch (umlDiff.getKind()) {
case ADD:
- ret.append(" add", Style.DECORATIONS_STYLER); //$NON-NLS-1$
+ ret.append(" add", Style.DECORATIONS_STYLER); //$NON-NLS-1$
break;
case DELETE:
- ret.append(" delete", Style.DECORATIONS_STYLER); //$NON-NLS-1$
+ ret.append(" delete", Style.DECORATIONS_STYLER); //$NON-NLS-1$
break;
case CHANGE:
- ret.append(" change", Style.DECORATIONS_STYLER); //$NON-NLS-1$
+ ret.append(" change", Style.DECORATIONS_STYLER); //$NON-NLS-1$
break;
case MOVE:
- ret.append(" move", Style.DECORATIONS_STYLER); //$NON-NLS-1$
+ ret.append(" move", Style.DECORATIONS_STYLER); //$NON-NLS-1$
break;
default:
throw new IllegalStateException("Unsupported " + DifferenceKind.class.getSimpleName() //$NON-NLS-1$

Back to the top