Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.compare.diagram.ide.ui/src/org/eclipse/emf/compare/diagram/ide/ui/internal/preferences/DiagramComparePreferencesPage.java3
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java15
-rw-r--r--plugins/org.eclipse.emf.compare.uml2/src/org/eclipse/emf/compare/uml2/internal/postprocessor/extension/UMLExtensionFactoryRegistry.java4
3 files changed, 8 insertions, 14 deletions
diff --git a/plugins/org.eclipse.emf.compare.diagram.ide.ui/src/org/eclipse/emf/compare/diagram/ide/ui/internal/preferences/DiagramComparePreferencesPage.java b/plugins/org.eclipse.emf.compare.diagram.ide.ui/src/org/eclipse/emf/compare/diagram/ide/ui/internal/preferences/DiagramComparePreferencesPage.java
index c8daf09bd..240e7bbbb 100644
--- a/plugins/org.eclipse.emf.compare.diagram.ide.ui/src/org/eclipse/emf/compare/diagram/ide/ui/internal/preferences/DiagramComparePreferencesPage.java
+++ b/plugins/org.eclipse.emf.compare.diagram.ide.ui/src/org/eclipse/emf/compare/diagram/ide/ui/internal/preferences/DiagramComparePreferencesPage.java
@@ -79,8 +79,7 @@ public class DiagramComparePreferencesPage extends FieldEditorPreferencePage imp
* @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
*/
public void init(IWorkbench workbench) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
}
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java
index e4a87ab2d..8bd4bebec 100644
--- a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java
@@ -44,8 +44,7 @@ public class TestPostProcessor implements IPostProcessor {
* org.eclipse.emf.common.util.Monitor)
*/
public void postConflicts(Comparison comparison, Monitor monitor) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
/**
@@ -55,8 +54,7 @@ public class TestPostProcessor implements IPostProcessor {
* org.eclipse.emf.common.util.Monitor)
*/
public void postEquivalences(Comparison comparison, Monitor monitor) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
/**
@@ -66,8 +64,7 @@ public class TestPostProcessor implements IPostProcessor {
* org.eclipse.emf.common.util.Monitor)
*/
public void postRequirements(Comparison comparison, Monitor monitor) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
/**
@@ -77,8 +74,7 @@ public class TestPostProcessor implements IPostProcessor {
* org.eclipse.emf.common.util.Monitor)
*/
public void postDiff(Comparison comparison, Monitor monitor) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
/**
@@ -88,8 +84,7 @@ public class TestPostProcessor implements IPostProcessor {
* org.eclipse.emf.common.util.Monitor)
*/
public void postComparison(Comparison comparison, Monitor monitor) {
- // TODO Auto-generated method stub
-
+ // Nothing to do
}
public static class TestPostProcessorDescriptor implements IPostProcessor.Descriptor {
diff --git a/plugins/org.eclipse.emf.compare.uml2/src/org/eclipse/emf/compare/uml2/internal/postprocessor/extension/UMLExtensionFactoryRegistry.java b/plugins/org.eclipse.emf.compare.uml2/src/org/eclipse/emf/compare/uml2/internal/postprocessor/extension/UMLExtensionFactoryRegistry.java
index db81acbd5..ff1bc2aa8 100644
--- a/plugins/org.eclipse.emf.compare.uml2/src/org/eclipse/emf/compare/uml2/internal/postprocessor/extension/UMLExtensionFactoryRegistry.java
+++ b/plugins/org.eclipse.emf.compare.uml2/src/org/eclipse/emf/compare/uml2/internal/postprocessor/extension/UMLExtensionFactoryRegistry.java
@@ -38,10 +38,10 @@ import org.eclipse.emf.compare.uml2.internal.postprocessor.extension.usecase.UML
public final class UMLExtensionFactoryRegistry {
/**
- * Constructor.
+ * Private Constructor to prevent direct instantiation.
*/
private UMLExtensionFactoryRegistry() {
- // TODO Auto-generated constructor stub
+ // Nothing to do
}
/**

Back to the top