diff options
| author | 2020-03-05 17:25:24 -0800 | |
|---|---|---|
| committer | 2020-03-06 01:51:48 +0000 | |
| commit | 2fa6a99ee90cb1899e77a54cf9e90ee0b7d2bb12 (patch) | |
| tree | 384ad7698e8fa74b0a1900d1110751365d8aa905 | |
| parent | 0a5a8fe7f47dcb749e4cd289bbb0530dfb96471c (diff) | |
API Review: Define the extras as containing CharSequences, not Strings
Test: atest FrameworksTelephonyTests:ImsPhoneTest
Fixes: 150331517
Change-Id: I7c6f4c13e6267a3e643ebae77697ea18ee8cd242
| -rw-r--r-- | telephony/java/android/telephony/ImsManager.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/telephony/java/android/telephony/ImsManager.java b/telephony/java/android/telephony/ImsManager.java index d504b381d1a1..fe75266011ed 100644 --- a/telephony/java/android/telephony/ImsManager.java +++ b/telephony/java/android/telephony/ImsManager.java @@ -74,17 +74,17 @@ public class ImsManager { "android.telephony.ims.action.WFC_IMS_REGISTRATION_ERROR"; /** - * An extra key corresponding to a String value which contains the carrier specific title to be - * displayed as part of the message shown to the user when there is an error registering for - * WiFi calling. + * An extra key corresponding to a {@link CharSequence} value which contains the carrier + * specific title to be displayed as part of the message shown to the user when there is an + * error registering for WiFi calling. */ public static final String EXTRA_WFC_REGISTRATION_FAILURE_TITLE = "android.telephony.ims.extra.WFC_REGISTRATION_FAILURE_TITLE"; /** - * An extra key corresponding to a String value which contains the carrier specific message to - * be displayed as part of the message shown to the user when there is an error registering for - * WiFi calling. + * An extra key corresponding to a {@link CharSequence} value which contains the carrier + * specific message to be displayed as part of the message shown to the user when there is an + * error registering for WiFi calling. */ public static final String EXTRA_WFC_REGISTRATION_FAILURE_MESSAGE = "android.telephony.ims.extra.WFC_REGISTRATION_FAILURE_MESSAGE"; |