diff options
author | Sailesh Nepal <sail@google.com> | 2014-12-02 15:18:25 -0800 |
---|---|---|
committer | Jay Shrauner <shrauner@google.com> | 2014-12-03 18:05:48 +0000 |
commit | ef77f0ed78db3cfa098a26d6186abbd59c5cfd15 (patch) | |
tree | 590de0456d60554b34d7934b51aa995ecaa8e9e9 /telecomm/java | |
parent | 73f1047318fdbfddce7edaa387725563890b5c73 (diff) | |
download | frameworks_base-ef77f0ed78db3cfa098a26d6186abbd59c5cfd15.zip frameworks_base-ef77f0ed78db3cfa098a26d6186abbd59c5cfd15.tar.gz frameworks_base-ef77f0ed78db3cfa098a26d6186abbd59c5cfd15.tar.bz2 |
Re-add Connection.getCallCapabilities
This method wasn't supposed to be removed.
Bug: 18594044
Bug: 18292176
Change-Id: Iac4cc0972643a8271957e480d3f48d50243af271
Diffstat (limited to 'telecomm/java')
-rw-r--r-- | telecomm/java/android/telecom/Connection.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java index a551aad..bd0c33f 100644 --- a/telecomm/java/android/telecom/Connection.java +++ b/telecomm/java/android/telecom/Connection.java @@ -838,6 +838,11 @@ public abstract class Connection implements IConferenceable { return mConnectionCapabilities; } + /** @hide */ + @SystemApi @Deprecated public final int getCallCapabilities() { + return getConnectionCapabilities(); + } + /** * Sets the value of the {@link #getAddress()} property. * |