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')
-rw-r--r--plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/AbstractApplyTransformationTask.java12
-rw-r--r--plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/QvtoAntTransformationTask.java14
2 files changed, 13 insertions, 13 deletions
diff --git a/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/AbstractApplyTransformationTask.java b/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/AbstractApplyTransformationTask.java
index f258d81fe..360fce245 100644
--- a/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/AbstractApplyTransformationTask.java
+++ b/plugins/org.eclipse.m2m.qvt.oml.runtime/src_ant/org/eclipse/m2m/internal/qvt/oml/runtime/ant/AbstractApplyTransformationTask.java
@@ -185,8 +185,8 @@ public abstract class AbstractApplyTransformationTask extends Task {
final List<URI> outUris = new ArrayList<URI>();
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 {
Iterator<TargetUriData> itrTargetData = targetUris.iterator();
for (TransformationParameter transfParam : transformation.getParameters()) {
@@ -215,12 +215,12 @@ public abstract class AbstractApplyTransformationTask extends Task {
finally {
transformation.cleanup();
}
- }
- };
+// }
+// };
- r = QvtLaunchConfigurationDelegateBase.getSafeRunnable(transformation, r);
+// r = QvtLaunchConfigurationDelegateBase.getSafeRunnable(transformation, r);
- r.run();
+// r.run();
if (getProject() != null && getResultUriProperty() != null) {
int index = 1;
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