Skip to content

Commit

Permalink
8238968: Inconsisent formatting of Rectangle2D toString method
Browse files Browse the repository at this point in the history
Reviewed-by: nlisker
  • Loading branch information
Lukasz Kostyra authored and nlisker committed Dec 5, 2022
1 parent fe81a27 commit c2af0c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public boolean intersects(double x, double y, double w, double h) {
* The returned string might be empty but cannot be {@code null}.
*/
@Override public String toString() {
return "Rectangle2D [minX = " + minX
return "Rectangle2D [minX=" + minX
+ ", minY=" + minY
+ ", maxX=" + maxX
+ ", maxY=" + maxY
Expand Down

1 comment on commit c2af0c3

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.