Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Willink2021-11-02 20:44:53 +0000
committerEd Willink2021-11-02 20:44:53 +0000
commit5baa2700dfd9d6131af5ce41fc0e5fd404f88430 (patch)
treed1e95e66038c6159c34a44b3a8bf3a350bfe4600
parent8871668d7079ecef1a4e92890b7bac3076d1418c (diff)
downloadorg.eclipse.qvtd-5baa2700dfd9d6131af5ce41fc0e5fd404f88430.tar.gz
org.eclipse.qvtd-5baa2700dfd9d6131af5ce41fc0e5fd404f88430.tar.xz
org.eclipse.qvtd-5baa2700dfd9d6131af5ce41fc0e5fd404f88430.zip
[unrelated] Close execution graphml files0.28.0M30.28.0
-rw-r--r--plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/Execution2GraphVisitor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/Execution2GraphVisitor.java b/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/Execution2GraphVisitor.java
index 440ecb9db..22b0e987b 100644
--- a/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/Execution2GraphVisitor.java
+++ b/plugins/org.eclipse.qvtd.pivot.qvtimperative/src/org/eclipse/qvtd/pivot/qvtimperative/evaluation/Execution2GraphVisitor.java
@@ -137,7 +137,7 @@ public class Execution2GraphVisitor extends AbstractExecutionVisitor<@Nullable O
GraphMLStringBuilder s = new GraphMLStringBuilder();
Execution2GraphVisitor execution2GraphVisitor = new Execution2GraphVisitor(s);
tx.accept(execution2GraphVisitor);
- outputStream.write(s.toString().getBytes());
+ outputStream.write(s.close().getBytes());
outputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block

Back to the top