Commit a2dc36c5 authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Stop printing null in graphs

parent 07f6e99f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ public class Utils {

    public static Map<String, Attribute> dotLabel(String label) {
        Map<String, Attribute> map = new HashMap<>();
        if (label != null)
            map.put("label", DefaultAttribute.createAttribute(label));
        return map;
    }