Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java')
-rw-r--r--plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java b/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java
index 1dfa35046..6cac0919c 100644
--- a/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java
+++ b/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java
@@ -319,8 +319,8 @@ public class QvtoAntTransformationTask extends Task {
final QvtTransformation transformation = getTransformationObject();
try {
- ShallowProcess.IRunnable r = new ShallowProcess.IRunnable() {
- public void run() throws Exception {
+// ShallowProcess.IRunnable r = new ShallowProcess.IRunnable() {
+// public void run() throws Exception {
try {
URI traceUri = getTraceUri(QvtoAntTransformationTask.this);
boolean useTrace = myTrace == null ? false : myTrace.isGenerate();
@@ -349,12 +349,12 @@ public class QvtoAntTransformationTask extends Task {
finally {
transformation.cleanup();
}
- }
+// }
+//
+// };
- };
-
- r = QvtLaunchConfigurationDelegateBase.getSafeRunnable(transformation, r);
- r.run();
+// r = QvtLaunchConfigurationDelegateBase.getSafeRunnable(transformation, r);
+// r.run();
}
catch (Exception e) {
if(e instanceof RuntimeException && e instanceof QvtRuntimeException == false) {

Back to the top