Rip out all the graphviz stuff

This commit is contained in:
Ian Gulliver
2019-07-10 20:34:44 +00:00
parent bc990c48d9
commit 04ec47e393
6 changed files with 0 additions and 61 deletions

View File

@@ -27,25 +27,6 @@ class EditorGroup extends EditorEntryBase {
};
}
exportGraphviz() {
let lines = [
'subgraph "cluster_' + this.id + '" {',
];
if (this.getLabel() != '') {
lines.push('\tlabel = "' + this.getLabel() + '";');
}
for (let obj of this.nodes) {
for (let line of obj.exportGraphviz()) {
lines.push('\t' + line);
}
}
lines.push('}');
return lines;
}
getNodes() {
return this.nodes_.getEntries(EditorNode);
}