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

Commit ac955f1b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix unreadable debug message in cell identity" into rvc-dev am: 11ce6826 am: 4f4d4093

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11843145

Change-Id: If11a0bf5ceb3fae6fcfffbb44f57788eb3ee394e
parents b6bc45ae 4f4d4093
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -366,7 +366,7 @@ public final class CellIdentityLte extends CellIdentity {
        .append(" mPci=").append(mPci)
        .append(" mTac=").append(mTac)
        .append(" mEarfcn=").append(mEarfcn)
        .append(" mBands=").append(mBands)
        .append(" mBands=").append(Arrays.toString(mBands))
        .append(" mBandwidth=").append(mBandwidth)
        .append(" mMcc=").append(mMccStr)
        .append(" mMnc=").append(mMncStr)
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ public final class CellIdentityNr extends CellIdentity {
                .append(" mPci = ").append(mPci)
                .append(" mTac = ").append(mTac)
                .append(" mNrArfcn = ").append(mNrArfcn)
                .append(" mBands = ").append(mBands)
                .append(" mBands = ").append(Arrays.toString(mBands))
                .append(" mMcc = ").append(mMccStr)
                .append(" mMnc = ").append(mMncStr)
                .append(" mNci = ").append(mNci)