diff options
author | Artur Satayev <satayev@google.com> | 2019-11-04 17:50:59 +0000 |
---|---|---|
committer | Artur Satayev <satayev@google.com> | 2019-11-08 16:17:13 +0000 |
commit | fc46be7dbd9778a785caa1f9f2959f45b579e3f6 (patch) | |
tree | 30a4b514bc6aa016304592735ff6cc4c707ca875 /telephony/java/com/android/ims | |
parent | ee9c6e75711a0e27415cf434a4554e90bda45952 (diff) |
Add @UnsupportedAppUsage annotations for greylist.
go/cleanup-greylist-txt
These have already been greylisted, however due to bugs/omissions in the tooling have been kept in go/greylist-txt instead of being annotated in the code.
Bug: 137350495
Test: m
Change-Id: Id6c1f5e403a0e66edb1102ee45f3bf19f244fb09
Merged-In: Id6c1f5e403a0e66edb1102ee45f3bf19f244fb09
Diffstat (limited to 'telephony/java/com/android/ims')
-rw-r--r-- | telephony/java/com/android/ims/ImsUtInterface.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/telephony/java/com/android/ims/ImsUtInterface.java b/telephony/java/com/android/ims/ImsUtInterface.java index c9d440551631..e80087d8924e 100644 --- a/telephony/java/com/android/ims/ImsUtInterface.java +++ b/telephony/java/com/android/ims/ImsUtInterface.java @@ -21,6 +21,8 @@ import android.os.Message; import android.telephony.ims.ImsCallForwardInfo; import android.telephony.ims.ImsSsInfo; +import dalvik.annotation.compat.UnsupportedAppUsage; + /** * Provides APIs for the supplementary service settings using IMS (Ut interface). * It is created from 3GPP TS 24.623 (XCAP(XML Configuration Access Protocol) @@ -121,6 +123,7 @@ public interface ImsUtInterface { * Retrieves the configuration of the call forward. * The return value of ((AsyncResult)result.obj) is an array of {@link ImsCallForwardInfo}. */ + @UnsupportedAppUsage public void queryCallForward(int condition, String number, Message result); /** |