Merge "Quick fix the getMobileNetworkOperator() in CellIdentity."
am: 298d2a46dc
Change-Id: I53f8165577dc7cdd98301b5752a32cc19d0dc8b3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user