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

Commit 377a8f6f 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

Change-Id: I730a9ede1c028ff6477630f1a64d3c6f88a40583
parents 323816fc 8c2fc263
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;
    }