Merge "Make CellIdentity#getPlmn() Publicly Accessible" into rvc-dev

This commit is contained in:
Nathan Harold
2020-04-24 16:36:38 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}