Merge "Kibosh the NrState Strings"
This commit is contained in:
@@ -20,6 +20,7 @@ import android.annotation.IntDef;
|
||||
import android.annotation.NonNull;
|
||||
import android.annotation.Nullable;
|
||||
import android.annotation.SystemApi;
|
||||
import android.os.Build;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import android.telephony.AccessNetworkConstants.TransportType;
|
||||
@@ -635,7 +636,8 @@ public final class NetworkRegistrationInfo implements Parcelable {
|
||||
.append(" cellIdentity=").append(mCellIdentity)
|
||||
.append(" voiceSpecificInfo=").append(mVoiceSpecificInfo)
|
||||
.append(" dataSpecificInfo=").append(mDataSpecificInfo)
|
||||
.append(" nrState=").append(nrStateToString(mNrState))
|
||||
.append(" nrState=").append(Build.IS_DEBUGGABLE
|
||||
? nrStateToString(mNrState) : "****")
|
||||
.append(" rRplmn=").append(mRplmn)
|
||||
.append(" isUsingCarrierAggregation=").append(mIsUsingCarrierAggregation)
|
||||
.append("}").toString();
|
||||
|
||||
@@ -1102,7 +1102,8 @@ public class ServiceState implements Parcelable {
|
||||
.append(", isUsingCarrierAggregation=").append(isUsingCarrierAggregation())
|
||||
.append(", mLteEarfcnRsrpBoost=").append(mLteEarfcnRsrpBoost)
|
||||
.append(", mNetworkRegistrationInfos=").append(mNetworkRegistrationInfos)
|
||||
.append(", mNrFrequencyRange=").append(mNrFrequencyRange)
|
||||
.append(", mNrFrequencyRange=").append(Build.IS_DEBUGGABLE
|
||||
? mNrFrequencyRange : FREQUENCY_RANGE_UNKNOWN)
|
||||
.append(", mOperatorAlphaLongRaw=").append(mOperatorAlphaLongRaw)
|
||||
.append(", mOperatorAlphaShortRaw=").append(mOperatorAlphaShortRaw)
|
||||
.append(", mIsDataRoamingFromRegistration=")
|
||||
|
||||
Reference in New Issue
Block a user