Skip to content

Commit f19d5f0

Browse files
Amith YamasaniAndroid (Google) Code Review
authored andcommitted
Merge "Fix a typo in RectF.equals"
2 parents 8fb0a5f + 3b577dd commit f19d5f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphics/java/android/graphics/RectF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public boolean equals(Object o) {
8484
if (this == o) return true;
8585
if (o == null || getClass() != o.getClass()) return false;
8686

87-
Rect r = (Rect) o;
87+
RectF r = (RectF) o;
8888
return left == r.left && top == r.top && right == r.right && bottom == r.bottom;
8989
}
9090

0 commit comments

Comments
 (0)