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

@@ -29,26 +29,6 @@ class EditorLink extends EditorEntryBase {
};
}
exportGraphviz() {
if (this.getFrom().getLabel() == '' || this.getTo().getLabel() == '') {
return [];
}
let label = '';
if (this.getLabel() != '') {
label = ' [label="' + this.getLabel() + '"]';
}
let ret = [];
for (let from of this.from) {
for (let to of this.to) {
ret.push('"' + from.id + '" -> "' + to.id + '"' + label + ';');
}
}
return ret;
};
getFrom() {
return this.nodes_.getEntries(EditorNode)[0];
}