Loading telephony/java/android/telephony/CellIdentityGsm.java +1 −1 Original line number Diff line number Diff line Loading @@ -202,7 +202,7 @@ public final class CellIdentityGsm implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading telephony/java/android/telephony/CellIdentityLte.java +1 −1 Original line number Diff line number Diff line Loading @@ -213,7 +213,7 @@ public final class CellIdentityLte implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading telephony/java/android/telephony/CellIdentityWcdma.java +1 −1 Original line number Diff line number Diff line Loading @@ -208,7 +208,7 @@ public final class CellIdentityWcdma implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading Loading
telephony/java/android/telephony/CellIdentityGsm.java +1 −1 Original line number Diff line number Diff line Loading @@ -202,7 +202,7 @@ public final class CellIdentityGsm implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading
telephony/java/android/telephony/CellIdentityLte.java +1 −1 Original line number Diff line number Diff line Loading @@ -213,7 +213,7 @@ public final class CellIdentityLte implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading
telephony/java/android/telephony/CellIdentityWcdma.java +1 −1 Original line number Diff line number Diff line Loading @@ -208,7 +208,7 @@ public final class CellIdentityWcdma implements Parcelable { * @return a 5 or 6 character string (MCC+MNC), null if any field is unknown */ public String getMobileNetworkOperator() { return (mMncStr == null || mMncStr == null) ? null : mMccStr + mMncStr; return (mMccStr == null || mMncStr == null) ? null : mMccStr + mMncStr; } /** Loading