-
Bug
-
Resolution: Fixed
-
P3
-
8, 9
-
b62
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8085487 | emb-9 | Andreas Lundblad | P3 | Resolved | Fixed | team |
ArrayType.toString() looks like:
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(elemtype);
appendAnnotationsString(sb, true);
sb.append("[]");
return sb.toString();
}
This prints the component type first, but then the potentially nested array types in reverse order.
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(elemtype);
appendAnnotationsString(sb, true);
sb.append("[]");
return sb.toString();
}
This prints the component type first, but then the potentially nested array types in reverse order.
- backported by
-
JDK-8085487 ArrayType prints element type post order
-
- Resolved
-
- relates to
-
JDK-8301455 comments in TestTypeAnnotations still refer to resolved JDK-8068737
-
- Resolved
-
-
JDK-8074070 Type annotations on array dimensions are not picked up by javac
-
- Closed
-