Reapply aosp/970247 to fix SubInfo#toString.
Looks like somewhere along the line this was partially overwritten by another change. This makes the toString value consistent and stops the MNC field from running into the country ISO code. Test: compilation (trivial) Change-Id: Ifdc00d340ae8ce31c224decebdd6c7aa4230bdb7 Bug: 8675309
This commit is contained in:
@@ -837,20 +837,20 @@ public class SubscriptionInfo implements Parcelable {
|
||||
+ " carrierId=" + mCarrierId + " displayName=" + mDisplayName
|
||||
+ " carrierName=" + mCarrierName + " nameSource=" + mNameSource
|
||||
+ " iconTint=" + mIconTint
|
||||
+ " mNumber=" + Rlog.pii(TelephonyUtils.IS_DEBUGGABLE, mNumber)
|
||||
+ " dataRoaming=" + mDataRoaming + " iconBitmap=" + mIconBitmap + " mcc " + mMcc
|
||||
+ " mnc " + mMnc + "mCountryIso=" + mCountryIso + " isEmbedded " + mIsEmbedded
|
||||
+ " nativeAccessRules " + Arrays.toString(mNativeAccessRules)
|
||||
+ " number=" + Rlog.pii(TelephonyUtils.IS_DEBUGGABLE, mNumber)
|
||||
+ " dataRoaming=" + mDataRoaming + " iconBitmap=" + mIconBitmap + " mcc=" + mMcc
|
||||
+ " mnc=" + mMnc + " countryIso=" + mCountryIso + " isEmbedded=" + mIsEmbedded
|
||||
+ " nativeAccessRules=" + Arrays.toString(mNativeAccessRules)
|
||||
+ " cardString=" + cardStringToPrint + " cardId=" + mCardId
|
||||
+ " isOpportunistic=" + mIsOpportunistic + " mGroupUUID=" + mGroupUUID
|
||||
+ " mIsGroupDisabled=" + mIsGroupDisabled
|
||||
+ " isOpportunistic=" + mIsOpportunistic + " groupUUID=" + mGroupUUID
|
||||
+ " isGroupDisabled=" + mIsGroupDisabled
|
||||
+ " profileClass=" + mProfileClass
|
||||
+ " ehplmns=" + Arrays.toString(mEhplmns)
|
||||
+ " hplmns=" + Arrays.toString(mHplmns)
|
||||
+ " subscriptionType=" + mSubscriptionType
|
||||
+ " mGroupOwner=" + mGroupOwner
|
||||
+ " groupOwner=" + mGroupOwner
|
||||
+ " carrierConfigAccessRules=" + Arrays.toString(mCarrierConfigAccessRules)
|
||||
+ " mAreUiccApplicationsEnabled=" + mAreUiccApplicationsEnabled + "}";
|
||||
+ " areUiccApplicationsEnabled=" + mAreUiccApplicationsEnabled + "}";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user