summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Xiangyu/Malcolm Chen <refuhoo@google.com> 2019-02-27 23:39:16 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-02-27 23:39:16 +0000
commit6dabb47132d6ce169a8592a209556a5791eb84d3 (patch)
tree4ebece6675ec71d2f96b9134c6bb56f57ddec0c4
parentfaf6bc77fd0521b93228fdcf26840c150caa038f (diff)
parentf386bfa13ee75fb8a006d4415583c294ba9d734d (diff)
Merge "Add @Nullable on SubscriptionInfo#getGroupUuid"
-rw-r--r--api/current.txt2
-rw-r--r--telephony/java/android/telephony/SubscriptionInfo.java2
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;
}