Fix a typo in RectF.equals
Change-Id: Idffbf9a324b68f38843049956d1d05d4a64d1345
This commit is contained in:
@@ -84,7 +84,7 @@ public class RectF implements Parcelable {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
|
||||
Rect r = (Rect) o;
|
||||
RectF r = (RectF) o;
|
||||
return left == r.left && top == r.top && right == r.right && bottom == r.bottom;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user