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

Commit 2534dd23 authored by Hyosun Kim's avatar Hyosun Kim Committed by Android (Google) Code Review
Browse files

Merge "Internal clean up - fix the comparison of string value...

Merge "Internal clean up - fix the comparison of string value SatelliteEntitlementPlmns in SubscriptionInfoInternal" into main
parents 18df5440 d54ef05c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1430,7 +1430,7 @@ public class SubscriptionInfoInternal {
                && mServiceCapabilities == that.mServiceCapabilities
                && mServiceCapabilities == that.mServiceCapabilities
                && mTransferStatus == that.mTransferStatus
                && mTransferStatus == that.mTransferStatus
                && mIsSatelliteEntitlementStatus == that.mIsSatelliteEntitlementStatus
                && mIsSatelliteEntitlementStatus == that.mIsSatelliteEntitlementStatus
                && mSatelliteEntitlementPlmns == that.mSatelliteEntitlementPlmns;
                && mSatelliteEntitlementPlmns.equals(that.mSatelliteEntitlementPlmns);
    }
    }


    @Override
    @Override