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

Commit e69e5b0c authored by Nathan Harold's avatar Nathan Harold
Browse files

Make CellIdentity#getPlmn() Publicly Accessible

Add support for telephony to access getPlmn().

Bug: 148111627
Test: compilation (trivial)
Merged-In: I5a79e5339a7e4e1351582f199559801069df0c76
Change-Id: I5a79e5339a7e4e1351582f199559801069df0c76
(cherry picked from commit 741d281c)
parent 7cea5cdd
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;
    }