Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b577ddb authored by Amith Yamasani's avatar Amith Yamasani
Browse files

Fix a typo in RectF.equals

Change-Id: Idffbf9a324b68f38843049956d1d05d4a64d1345
parent d4933842
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }