Skip to content

Commit c2af0c3

Browse files
Lukasz Kostyranlisker
authored andcommitted
8238968: Inconsisent formatting of Rectangle2D toString method
Reviewed-by: nlisker
1 parent fe81a27 commit c2af0c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/javafx.graphics/src/main/java/javafx/geometry/Rectangle2D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public boolean intersects(double x, double y, double w, double h) {
243243
* The returned string might be empty but cannot be {@code null}.
244244
*/
245245
@Override public String toString() {
246-
return "Rectangle2D [minX = " + minX
246+
return "Rectangle2D [minX=" + minX
247247
+ ", minY=" + minY
248248
+ ", maxX=" + maxX
249249
+ ", maxY=" + maxY

0 commit comments

Comments
 (0)