diff options
author | Neil Fuller <nfuller@google.com> | 2019-11-15 11:26:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-11-15 11:26:06 +0000 |
commit | 88c9da6f7e554a10bb3183175515f2c22ca10b10 (patch) | |
tree | 670f4aa175a7fdc59e4d308fc32535050ebc937f /mmodules | |
parent | 33af5cbb9be00d1ae2d6fffeed804fd20103357e (diff) | |
parent | 3e4a5b594d66a1717ff9dc67c11334f70b5f6ae2 (diff) |
Merge "Switch MCC / MNC values to string"
Diffstat (limited to 'mmodules')
-rw-r--r-- | mmodules/core_platform_api/api/platform/current-api.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mmodules/core_platform_api/api/platform/current-api.txt b/mmodules/core_platform_api/api/platform/current-api.txt index 83d05e8e2d..fe99431f54 100644 --- a/mmodules/core_platform_api/api/platform/current-api.txt +++ b/mmodules/core_platform_api/api/platform/current-api.txt @@ -1134,12 +1134,12 @@ package libcore.timezone { public class TelephonyNetwork { method public String getCountryIsoCode(); - method public int getMcc(); - method public int getMnc(); + method public String getMcc(); + method public String getMnc(); } public class TelephonyNetworkFinder { - method public libcore.timezone.TelephonyNetwork findNetworkByMccMnc(int, int); + method public libcore.timezone.TelephonyNetwork findNetworkByMccMnc(String, String); } public final class TimeZoneDataFiles { |