summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/Call.java
diff options
context:
space:
mode:
authorAnton Hansson <hansson@google.com>2020-10-19 16:15:58 +0100
committerAnton Hansson <hansson@google.com>2020-10-19 16:41:01 +0100
commitdd7d52f9632a0dbb8b14b69520c5ea31e0b3b4a2 (patch)
treeaee11cc71b2400dfcaa1784ab9a10f13fd9e89fd /telecomm/java/android/telecom/Call.java
parent20a3234d5bb0e7132610416369f53ec9dd9a35e5 (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/Call.java')
-rwxr-xr-xtelecomm/java/android/telecom/Call.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/telecomm/java/android/telecom/Call.java b/telecomm/java/android/telecom/Call.java
index 9f16543c410e..a85eb53605d6 100755
--- a/telecomm/java/android/telecom/Call.java
+++ b/telecomm/java/android/telecom/Call.java
@@ -1683,7 +1683,6 @@ public final class Call {
* @hide
*/
@SystemApi
- @TestApi
public void enterBackgroundAudioProcessing() {
if (mState != STATE_ACTIVE && mState != STATE_RINGING) {
throw new IllegalStateException("Call must be active or ringing");
@@ -1704,7 +1703,6 @@ public final class Call {
* @hide
*/
@SystemApi
- @TestApi
public void exitBackgroundAudioProcessing(boolean shouldRing) {
if (mState != STATE_AUDIO_PROCESSING) {
throw new IllegalStateException("Call must in the audio processing state");