mirror of https://github.com/dspinellis/UMLGraph
Bring back comma that got lost in 52d95c3c
This commit is contained in:
parent
cc22b016ef
commit
f687058ca3
|
|
@ -660,7 +660,7 @@ class ClassGraph {
|
|||
w.println("\t// " + fromName + " " + rt.toString() + " " + toName);
|
||||
w.println("\t" + relationNode(from, fromName) + " -> " + relationNode(to, toName) + " [" +
|
||||
"taillabel=\"" + tailLabel + "\", " +
|
||||
((label == null || label.isEmpty()) ? "label=\" \"" : "label=\"" + guillemize(opt, label) + "\", ") +
|
||||
((label == null || label.isEmpty()) ? "label=\"\", " : "label=\"" + guillemize(opt, label) + "\", ") +
|
||||
"headlabel=\"" + headLabel + "\", " +
|
||||
"fontname=\"" + opt.edgeFontName + "\", " +
|
||||
"fontcolor=\"" + opt.edgeFontColor + "\", " +
|
||||
|
|
|
|||
Loading…
Reference in New Issue