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

Commit d54ef05c authored by Hyosun Kim's avatar Hyosun Kim
Browse files

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

Internal clean up - fix the comparison of string value SatelliteEntitlementPlmns in SubscriptionInfoInternal

Bug: 348569642
Test: SubscriptionInfoInternalTest
Flag: EXEMPT bugfix

Change-Id: I25efa2cdf1f08d495fe13d31221730dd0ecbc3b7
parent 22a5bbfe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1430,7 +1430,7 @@ public class SubscriptionInfoInternal {
                && mServiceCapabilities == that.mServiceCapabilities
                && mTransferStatus == that.mTransferStatus
                && mIsSatelliteEntitlementStatus == that.mIsSatelliteEntitlementStatus
                && mSatelliteEntitlementPlmns == that.mSatelliteEntitlementPlmns;
                && mSatelliteEntitlementPlmns.equals(that.mSatelliteEntitlementPlmns);
    }

    @Override