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

Commit 21d1f68d authored by Malcolm Chen's avatar Malcolm Chen Committed by android-build-merger
Browse files

Merge "Fix UiccSlotInfo equals method." into pi-dev am: 82c0b73e

am: e8fdd3b2

Change-Id: I0dc9ec7f55672e258ebef04e2705f23f8b9b67a0
parents 1692214d e8fdd3b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ public class UiccSlotInfo implements Parcelable {
        UiccSlotInfo that = (UiccSlotInfo) obj;
        return (mIsActive == that.mIsActive)
                && (mIsEuicc == that.mIsEuicc)
                && (mCardId == that.mCardId)
                && (Objects.equals(mCardId, that.mCardId))
                && (mCardStateInfo == that.mCardStateInfo)
                && (mLogicalSlotIdx == that.mLogicalSlotIdx)
                && (mIsExtendedApduSupported == that.mIsExtendedApduSupported);