diff options
| author | 2024-11-15 02:37:23 +0000 | |
|---|---|---|
| committer | 2024-11-15 02:37:23 +0000 | |
| commit | 095c6db7b5251941c99cf42aa26b28ccd1d6778f (patch) | |
| tree | 0e1c285a439670d4f65cc69263dfb5e8095e927d | |
| parent | 7d7002f780b6660f83b993c591d251818d067859 (diff) | |
Clean up TODO comment for TelephonyManager.getIccAuthentication
This change removes the redundant TODO comment since he API has been protected with settled-down permission USE_ICC_AUTH_WITH_DEVICE_IDENTIFIER.
Bug: 73660190
Change-Id: Ic419dc6da464e257e64fcb02ad2e5db5f54450b1
Test: m -j
Flag: EXEMPT clean up
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 6f2c8623fd71..1a45701428e2 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -8825,9 +8825,6 @@ public class TelephonyManager { * {@link PackageManager#FEATURE_TELEPHONY_SUBSCRIPTION} or doesn't support given * authType. */ - // TODO(b/73660190): This should probably require MODIFY_PHONE_STATE, not - // READ_PRIVILEGED_PHONE_STATE. It certainly shouldn't reference the permission in Javadoc since - // it's not public API. @RequiresFeature(PackageManager.FEATURE_TELEPHONY_SUBSCRIPTION) public String getIccAuthentication(int appType, @AuthType int authType, String data) { return getIccAuthentication(getSubId(), appType, authType, data); |