summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/AudioState.java
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-12-12 15:26:29 -0800
committerSailesh Nepal <sail@google.com>2015-01-30 06:18:48 +0000
commita7c9046973260aa71837410ffc8df8c296a2826f (patch)
treecd5930344a110fecc5fd84cc464dc9f7379ae133 /telecomm/java/android/telecom/AudioState.java
parent87d2169b748f10fcf11f9891cba959327983f278 (diff)
downloadframeworks_base-a7c9046973260aa71837410ffc8df8c296a2826f.zip
frameworks_base-a7c9046973260aa71837410ffc8df8c296a2826f.tar.gz
frameworks_base-a7c9046973260aa71837410ffc8df8c296a2826f.tar.bz2
Remove deprecated Telecom APIs
This APIs are no longer used and are safe to delete. Bug: 18607657 Change-Id: I94dad196db9f8be544f05b12b7b71de124fc9328
Diffstat (limited to 'telecomm/java/android/telecom/AudioState.java')
-rw-r--r--telecomm/java/android/telecom/AudioState.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/telecomm/java/android/telecom/AudioState.java b/telecomm/java/android/telecom/AudioState.java
index 9c03319..0720df3 100644
--- a/telecomm/java/android/telecom/AudioState.java
+++ b/telecomm/java/android/telecom/AudioState.java
@@ -54,14 +54,9 @@ public final class AudioState implements Parcelable {
public static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET |
ROUTE_SPEAKER;
- /** Note: Deprecated, please do not use if possible. */
- @SystemApi public final boolean isMuted;
-
- /** Note: Deprecated, please do not use if possible. */
- @SystemApi public final int route;
-
- /** Note: Deprecated, please do not use if possible. */
- @SystemApi public final int supportedRouteMask;
+ private final boolean isMuted;
+ private final int route;
+ private final int supportedRouteMask;
public AudioState(boolean muted, int route, int supportedRouteMask) {
this.isMuted = muted;