Merge "Fix a typo in RectF.equals"

This commit is contained in:
Amith Yamasani
2012-03-09 12:39:22 -08:00
committed by Android (Google) Code Review

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