Fix a typo in RectF.equals

Change-Id: Idffbf9a324b68f38843049956d1d05d4a64d1345
This commit is contained in:
Amith Yamasani
2012-03-09 11:53:31 -08:00
parent d4933842b1
commit 3b577ddb1b

View File

@@ -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;
}