diff options
| author | 2019-02-27 23:39:16 +0000 | |
|---|---|---|
| committer | 2019-02-27 23:39:16 +0000 | |
| commit | 6dabb47132d6ce169a8592a209556a5791eb84d3 (patch) | |
| tree | 4ebece6675ec71d2f96b9134c6bb56f57ddec0c4 | |
| parent | faf6bc77fd0521b93228fdcf26840c150caa038f (diff) | |
| parent | f386bfa13ee75fb8a006d4415583c294ba9d734d (diff) | |
Merge "Add @Nullable on SubscriptionInfo#getGroupUuid"
| -rw-r--r-- | api/current.txt | 2 | ||||
| -rw-r--r-- | telephony/java/android/telephony/SubscriptionInfo.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/api/current.txt b/api/current.txt index 8a7b0856feef..cb077aff6255 100644 --- a/api/current.txt +++ b/api/current.txt @@ -45023,7 +45023,7 @@ package android.telephony { method public String getCountryIso(); method public int getDataRoaming(); method public CharSequence getDisplayName(); - method public String getGroupUuid(); + method @Nullable public String getGroupUuid(); method public String getIccId(); method public int getIconTint(); method @Deprecated public int getMcc(); diff --git a/telephony/java/android/telephony/SubscriptionInfo.java b/telephony/java/android/telephony/SubscriptionInfo.java index 17acf2bcdd1d..108af617fccc 100644 --- a/telephony/java/android/telephony/SubscriptionInfo.java +++ b/telephony/java/android/telephony/SubscriptionInfo.java @@ -467,7 +467,7 @@ public class SubscriptionInfo implements Parcelable { * @return group UUID a String of group UUID if it belongs to a group. Otherwise * it will return null. */ - public String getGroupUuid() { + public @Nullable String getGroupUuid() { return mGroupUUID; } |