diff options
| author | Anton Hansson <hansson@google.com> | 2020-10-19 16:15:58 +0100 |
|---|---|---|
| committer | Anton Hansson <hansson@google.com> | 2020-10-19 16:41:01 +0100 |
| commit | dd7d52f9632a0dbb8b14b69520c5ea31e0b3b4a2 (patch) | |
| tree | aee11cc71b2400dfcaa1784ab9a10f13fd9e89fd /telecomm/java/android/telecom/CallScreeningService.java | |
| parent | 20a3234d5bb0e7132610416369f53ec9dd9a35e5 (diff) | |
Remove @TestApi from @SystemApi symbols
I ran these commands:
cd frameworks/base
grep -rl '@TestApi' --include '*.java' | xargs perl -i -p0e \
's/\@SystemApi[\s\n]+(\@\w+[\s\n]+)?\@TestApi/\@SystemApi\1/gs'
grep -rl '@TestApi' --include '*.java' | xargs perl -i -p0e \
's/\@TestApi[\s\n]+(\@\w+[\s\n]+)?\@SystemApi/\1\@SystemApi/gs'
Bug: 171179806
Test: m checkapi
Change-Id: I772790b783b0a8730b8bf680c9e569a886b8d789
Merged-In: I772790b783b0a8730b8bf680c9e569a886b8d789
Diffstat (limited to 'telecomm/java/android/telecom/CallScreeningService.java')
| -rw-r--r-- | telecomm/java/android/telecom/CallScreeningService.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/telecomm/java/android/telecom/CallScreeningService.java b/telecomm/java/android/telecom/CallScreeningService.java index 49f183151e27..7988b036ccd3 100644 --- a/telecomm/java/android/telecom/CallScreeningService.java +++ b/telecomm/java/android/telecom/CallScreeningService.java @@ -21,7 +21,6 @@ import android.annotation.NonNull; import android.annotation.RequiresPermission; import android.annotation.SdkConstant; import android.annotation.SystemApi; -import android.annotation.TestApi; import android.app.Service; import android.content.ComponentName; import android.content.Intent; @@ -323,7 +322,6 @@ public abstract class CallScreeningService extends Service { * @hide */ @SystemApi - @TestApi @RequiresPermission(Manifest.permission.CAPTURE_AUDIO_OUTPUT) public @NonNull Builder setShouldScreenCallViaAudioProcessing( boolean shouldScreenCallViaAudioProcessing) { |
