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

Commit 1773ded8 authored by Fyodor Kupolov's avatar Fyodor Kupolov Committed by Android (Google) Code Review
Browse files

Merge "Fixed key comparison in equals method" into mnc-dev

parents 46eddef4 1af7a839
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -456,7 +456,7 @@ public class RestrictionEntry implements Parcelable {
        if (o == this) return true;
        if (o == this) return true;
        if (!(o instanceof RestrictionEntry)) return false;
        if (!(o instanceof RestrictionEntry)) return false;
        final RestrictionEntry other = (RestrictionEntry) o;
        final RestrictionEntry other = (RestrictionEntry) o;
        if (mType != other.mType || mKey.equals(other.mKey)) {
        if (mType != other.mType || !mKey.equals(other.mKey)) {
            return false;
            return false;
        }
        }
        if (mCurrentValues == null && other.mCurrentValues == null
        if (mCurrentValues == null && other.mCurrentValues == null