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

Commit 45323eee authored by Nathan Harold's avatar Nathan Harold Committed by Automerger Merge Worker
Browse files

Merge "Make CellIdentity#getPlmn() Publicly Accessible" into rvc-dev am: 8c2fc263 am: 377a8f6f

Change-Id: Id84928684e05a6713aeb32a0b46aa9b688569257
parents 1c5d09a7 377a8f6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ public abstract class CellIdentity implements Parcelable {
    }

    /** @hide */
    protected String getPlmn() {
    public @Nullable String getPlmn() {
        if (mMccStr == null || mMncStr == null) return null;
        return mMccStr + mMncStr;
    }