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

This commit is contained in:
TreeHugger Robot
2018-04-16 23:56:06 +00:00
committed by Android (Google) Code Review

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