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

Commit 78985f3f authored by Fyodor Kupolov's avatar Fyodor Kupolov Committed by Android Git Automerger
Browse files

am ea57b592: am 1773ded8: Merge "Fixed key comparison in equals method" into mnc-dev

* commit 'ea57b592':
  Fixed key comparison in equals method
parents 740eef52 ea57b592
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -456,7 +456,7 @@ public class RestrictionEntry implements Parcelable {
        if (o == this) return true;
        if (!(o instanceof RestrictionEntry)) return false;
        final RestrictionEntry other = (RestrictionEntry) o;
        if (mType != other.mType || mKey.equals(other.mKey)) {
        if (mType != other.mType || !mKey.equals(other.mKey)) {
            return false;
        }
        if (mCurrentValues == null && other.mCurrentValues == null