Merge "Fix UiccSlotInfo equals method." into pi-dev

am: 82c0b73e98

Change-Id: Ide54ab7f3b29b7bde846aa292f121bef0baa13cb
This commit is contained in:
Malcolm Chen
2018-04-16 17:39:13 -07:00
committed by android-build-merger

View File

@@ -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);