Bring back comma that got lost in 52d95c3c

This commit is contained in:
Diomidis Spinellis 2014-10-28 19:54:57 +02:00
parent cc22b016ef
commit f687058ca3
1 changed files with 1 additions and 1 deletions

View File

@ -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 + "\", " +