--- old/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Attribute.java 2019-06-03 13:22:55.517174800 -0700 +++ new/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Attribute.java 2019-06-03 13:22:55.197014811 -0700 @@ -247,7 +247,8 @@ buf.append('('); boolean first = true; for (Pair value : values) { - if (!first) buf.append(", "); + if (!first) + buf.append(", "); first = false; Name name = value.fst.name; @@ -368,7 +369,7 @@ public void accept(Visitor v) { v.visitEnum(this); } @DefinedBy(Api.LANGUAGE_MODEL) public String toString() { - return value.enclClass() + "." + value; // qualified name + return value.toString(); } @DefinedBy(Api.LANGUAGE_MODEL) public VarSymbol getValue() {