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

Commit 703b7f9d authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Merge "Fix unreadable debug message in cell identity" into rvc-dev am:...

Merge "Merge "Fix unreadable debug message in cell identity" into rvc-dev am: 11ce6826 am: 4f4d4093 am: ac955f1b" into rvc-qpr-dev-plus-aosp am: 0a5cf97a

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

Change-Id: I68347c8e1466a19113cde6a04ecb6bab479c47b5
parents d1bbac66 0a5cf97a
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)