summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/Conference.java
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2015-04-14 18:16:10 -0700
committerJay Shrauner <shrauner@google.com>2015-04-14 22:57:30 -0700
commit164a0acf53a3496c974a97ed35834e6195c14e4b (patch)
tree927368175ef26c476ac472669f1ee961a73ff2fb /telecomm/java/android/telecom/Conference.java
parentb744e4795993fe32d6c0938d837e6c44a1a07566 (diff)
downloadframeworks_base-164a0acf53a3496c974a97ed35834e6195c14e4b.zip
frameworks_base-164a0acf53a3496c974a97ed35834e6195c14e4b.tar.gz
frameworks_base-164a0acf53a3496c974a97ed35834e6195c14e4b.tar.bz2
Remove deprecated telecom APIs. Mark others final.
Bug: Change-Id: I8a04903052a964f3997b5bb36730b8b200c8e472
Diffstat (limited to 'telecomm/java/android/telecom/Conference.java')
-rw-r--r--telecomm/java/android/telecom/Conference.java14
1 files changed, 2 insertions, 12 deletions
diff --git a/telecomm/java/android/telecom/Conference.java b/telecomm/java/android/telecom/Conference.java
index ddaedcd..c37460b 100644
--- a/telecomm/java/android/telecom/Conference.java
+++ b/telecomm/java/android/telecom/Conference.java
@@ -38,7 +38,7 @@ public abstract class Conference implements IConferenceable {
* Used to indicate that the conference connection time is not specified. If not specified,
* Telecom will set the connect time.
*/
- public static long CONNECT_TIME_NOT_SPECIFIED = 0;
+ public static final long CONNECT_TIME_NOT_SPECIFIED = 0;
/** @hide */
public abstract static class Listener {
@@ -63,7 +63,7 @@ public abstract class Conference implements IConferenceable {
private final List<Connection> mUnmodifiableConferenceableConnections =
Collections.unmodifiableList(mConferenceableConnections);
- protected PhoneAccountHandle mPhoneAccount;
+ private PhoneAccountHandle mPhoneAccount;
private AudioState mAudioState;
private int mState = Connection.STATE_NEW;
private DisconnectCause mDisconnectCause;
@@ -116,11 +116,6 @@ public abstract class Conference implements IConferenceable {
return mState;
}
- /** @hide */
- @Deprecated public final int getCapabilities() {
- return getConnectionCapabilities();
- }
-
/**
* Returns the capabilities of a conference. See {@code CAPABILITY_*} constants in class
* {@link Connection} for valid values.
@@ -301,11 +296,6 @@ public abstract class Conference implements IConferenceable {
return mDisconnectCause;
}
- /** @hide */
- @Deprecated public final void setCapabilities(int connectionCapabilities) {
- setConnectionCapabilities(connectionCapabilities);
- }
-
/**
* Sets the capabilities of a conference. See {@code CAPABILITY_*} constants of class
* {@link Connection} for valid values.