summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/RemoteConnectionService.java
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2015-04-16 23:05:55 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-16 23:06:05 +0000
commitd01242946eb7423612998b5bdbc71a6a1b3e8581 (patch)
treeff472650660b82e6877e5f82c9714c9991b90776 /telecomm/java/android/telecom/RemoteConnectionService.java
parent54832cdb763034b5ee2d5ab289033a7ef2cf9cd1 (diff)
parent8f988439247f90633af5fbcc6b18214f3b6f6d31 (diff)
downloadframeworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.zip
frameworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.tar.gz
frameworks_base-d01242946eb7423612998b5bdbc71a6a1b3e8581.tar.bz2
Merge "Remove connection substate"
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionService.java')
-rw-r--r--telecomm/java/android/telecom/RemoteConnectionService.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java
index 7374a3b..a9b725b 100644
--- a/telecomm/java/android/telecom/RemoteConnectionService.java
+++ b/telecomm/java/android/telecom/RemoteConnectionService.java
@@ -84,7 +84,6 @@ final class RemoteConnectionService {
}
connection.setConferenceableConnections(conferenceable);
connection.setVideoState(parcel.getVideoState());
- connection.setCallSubstate(parcel.getCallSubstate());
if (connection.getState() == Connection.STATE_DISCONNECTED) {
// ... then, if it was created in a disconnected state, that indicates
// failure on the providing end, so immediately mark it destroyed
@@ -312,12 +311,6 @@ final class RemoteConnectionService {
mOurConnectionServiceImpl.addRemoteExistingConnection(remoteConnction);
}
-
- @Override
- public void setCallSubstate(String callId, int callSubstate) {
- findConnectionForAction(callId, "callSubstate")
- .setCallSubstate(callSubstate);
- }
};
private final ConnectionServiceAdapterServant mServant =