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

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

Make CellIdentity#getPlmn() Publicly Accessible am: e69e5b0c

Change-Id: I9b18806d5e22e2e14f10f917a4c85f7792dd96d0
parents 3cbbd603 e69e5b0c
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;
    }