Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2019-08-28 17:21:51 +0000
committerEd Willink2019-08-28 17:22:18 +0000
commite81a8decfb2f1565c84cf7dbe06547684f256168 (patch)
tree8bb43986137cc13509da4ef1b10e45f45f097167
parent5f2e85b0b8370e34ffa3e0d873a0d7c03aa245f3 (diff)
downloadorg.eclipse.qvtd-e81a8decfb2f1565c84cf7dbe06547684f256168.tar.gz
org.eclipse.qvtd-e81a8decfb2f1565c84cf7dbe06547684f256168.tar.xz
org.eclipse.qvtd-e81a8decfb2f1565c84cf7dbe06547684f256168.zip
[unrelated] Trim debug0.20.0M3
-rw-r--r--plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvts/trace/Relation2TraceClass.java4
-rw-r--r--plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvts2qvti/BasicPartition2Mapping.java4
-rw-r--r--plugins/org.eclipse.qvtd.pivot.qvtbase/src/org/eclipse/qvtd/pivot/qvtbase/graphs/GraphMLStringBuilder.java3
-rw-r--r--plugins/org.eclipse.qvtd.xml/src/org/eclipse/qvtd/xml/utilities/XMLServices.java6
4 files changed, 1 insertions, 16 deletions
diff --git a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvts/trace/Relation2TraceClass.java b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvts/trace/Relation2TraceClass.java
index e45572202..561273f7a 100644
--- a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvts/trace/Relation2TraceClass.java
+++ b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvtr2qvts/trace/Relation2TraceClass.java
@@ -143,10 +143,6 @@ public class Relation2TraceClass extends AbstractRelation2MiddleType
createVariableDeclaration2TraceProperty(node, rootVariables, allHeadGroupNodes, manyTracesPerHead);
}
else if (/*node.isPattern() &&*/ node.isMatched() && !node.isConstant()) {
- String name = node.getName();
- if ("atlHelper".equals(name)) {
- getClass();
- }
createVariableDeclaration2TraceProperty(node, rootVariables, allHeadGroupNodes, manyTracesPerHead);
}
}
diff --git a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvts2qvti/BasicPartition2Mapping.java b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvts2qvti/BasicPartition2Mapping.java
index 435c5b860..dd51bc2ae 100644
--- a/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvts2qvti/BasicPartition2Mapping.java
+++ b/plugins/org.eclipse.qvtd.compiler/src/org/eclipse/qvtd/compiler/internal/qvts2qvti/BasicPartition2Mapping.java
@@ -1649,10 +1649,6 @@ public class BasicPartition2Mapping extends AbstractPartition2Mapping
}
private void createObservedProperties() {
- String name = getPartition().getName();
- if ("complexAttributePrimitiveAttributes«local»".equals(name)) {
- getClass();
- }
Set<@NonNull Property> allCheckedProperties = checkedConditionAnalysis.getAllCheckedProperties();
if (!allCheckedProperties.isEmpty()) {
//
diff --git a/plugins/org.eclipse.qvtd.pivot.qvtbase/src/org/eclipse/qvtd/pivot/qvtbase/graphs/GraphMLStringBuilder.java b/plugins/org.eclipse.qvtd.pivot.qvtbase/src/org/eclipse/qvtd/pivot/qvtbase/graphs/GraphMLStringBuilder.java
index c7d16ff67..483bc58c0 100644
--- a/plugins/org.eclipse.qvtd.pivot.qvtbase/src/org/eclipse/qvtd/pivot/qvtbase/graphs/GraphMLStringBuilder.java
+++ b/plugins/org.eclipse.qvtd.pivot.qvtbase/src/org/eclipse/qvtd/pivot/qvtbase/graphs/GraphMLStringBuilder.java
@@ -162,9 +162,6 @@ public class GraphMLStringBuilder extends GraphMLBuilder implements GraphStringB
s.appendElement("fontSize", "16");
s.appendElement("modelName", "sides");
s.appendElement("modelPosition", "n");
- if (label == null) {
- getClass();
- }
s.appendTextEnd(label);
// appendShape(shapeName);
s.popTag();
diff --git a/plugins/org.eclipse.qvtd.xml/src/org/eclipse/qvtd/xml/utilities/XMLServices.java b/plugins/org.eclipse.qvtd.xml/src/org/eclipse/qvtd/xml/utilities/XMLServices.java
index 54d31123d..90b655074 100644
--- a/plugins/org.eclipse.qvtd.xml/src/org/eclipse/qvtd/xml/utilities/XMLServices.java
+++ b/plugins/org.eclipse.qvtd.xml/src/org/eclipse/qvtd/xml/utilities/XMLServices.java
@@ -207,11 +207,7 @@ public class XMLServices
EReference eReference = (EReference)eFeature;
EReference eOpposite = eReference.getEOpposite();
if (eOpposite != null) {
- String string = eOpposite.getName();
- if (string.endsWith("appliedProperty")) {
- getClass();
- }
- return string;
+ return eOpposite.getName();
}
}
}

Back to the top