Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Delaigue2017-01-10 09:47:58 +0000
committerLaurent Delaigue2017-01-24 16:15:02 +0000
commitf14de732293a0f3c7cdea8cbbb7e0d01f1118de1 (patch)
tree4d495fd2443236eaff9695b2f3bd14f63b90db04 /plugins/org.eclipse.emf.compare.tests/src
parentb9bd6cffd7621e1164a299f070deb5072d17cfd2 (diff)
downloadorg.eclipse.emf.compare-f14de732293a0f3c7cdea8cbbb7e0d01f1118de1.tar.gz
org.eclipse.emf.compare-f14de732293a0f3c7cdea8cbbb7e0d01f1118de1.tar.xz
org.eclipse.emf.compare-f14de732293a0f3c7cdea8cbbb7e0d01f1118de1.zip
Fix useless TODO markers in different places
Change-Id: I7fa049035c29e2347eed9dc0fb8bce512908d05a Signed-off-by: Laurent Delaigue <laurent.delaigue@obeo.fr>
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/postprocess/data/TestPostProcessor.java15
1 files changed, 5 insertions, 10 deletions
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 {

Back to the top