Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2016-09-16 05:11:42 +0000
committerEd Willink2016-09-19 11:31:47 +0000
commite1e3d0530b25bbf803ae91b998fee02b04fd0098 (patch)
treef289b2307fdf08091fb11c1db613037883ed7d14
parent0301d99ec2647bbd27d660929b1b6aafa6c8fd19 (diff)
downloadorg.eclipse.qvtd-e1e3d0530b25bbf803ae91b998fee02b04fd0098.tar.gz
org.eclipse.qvtd-e1e3d0530b25bbf803ae91b998fee02b04fd0098.tar.xz
org.eclipse.qvtd-e1e3d0530b25bbf803ae91b998fee02b04fd0098.zip
ok
-rw-r--r--plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/QVTiIncrementalExecutor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/QVTiIncrementalExecutor.java b/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/QVTiIncrementalExecutor.java
index 82526c32c..d51bf418e 100644
--- a/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/QVTiIncrementalExecutor.java
+++ b/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/QVTiIncrementalExecutor.java
@@ -233,7 +233,7 @@ public class QVTiIncrementalExecutor extends BasicQVTiExecutor
Mapping asMapping = QVTimperativeUtil.getContainingMapping(navigationCallExp);
Object ecoreValue;
if ((asMapping != null) && transformationAnalysis.isHazardousRead(asMapping, navigationCallExp)) { // null within queries
- assert false; // Should use an AccessStatement
+ // assert false; // Should use an AccessStatement
// assert sourceValue != null;
if (sourceValue == null) {
throw new InvalidValueException("Null source for '" + referredProperty + "'", sourceValue, navigationCallExp);

Back to the top