diff options
| -rw-r--r-- | telephony/java/android/telephony/CellIdentity.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/telephony/java/android/telephony/CellIdentity.java b/telephony/java/android/telephony/CellIdentity.java index 390a79ab1b88..33a43c1e0319 100644 --- a/telephony/java/android/telephony/CellIdentity.java +++ b/telephony/java/android/telephony/CellIdentity.java @@ -45,8 +45,10 @@ public abstract class CellIdentity implements Parcelable { */ public static final int MCC_LENGTH = 3; - private static final int MNC_MIN_LENGTH = 2; - private static final int MNC_MAX_LENGTH = 3; + /** @hide */ + public static final int MNC_MIN_LENGTH = 2; + /** @hide */ + public static final int MNC_MAX_LENGTH = 3; // Log tag /** @hide */ |