Skip to content

Commit c20cbff

Browse files
author
Genkzsz11
committed
Revert "IMS: Fix issue with answering call for some 3rd party apps"
This reverts commit 9fa9ac0.
1 parent aad9aed commit c20cbff

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

telecomm/java/android/telecom/ConnectionService.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,8 +2106,7 @@ private void abort(String callId) {
21062106
findConnectionForAction(callId, "abort").onAbort();
21072107
}
21082108

2109-
/** {@hide} */
2110-
protected void answerVideo(String callId, int videoState) {
2109+
private void answerVideo(String callId, int videoState) {
21112110
Log.i(this, "answerVideo %s", callId);
21122111
if (mConnectionById.containsKey(callId)) {
21132112
findConnectionForAction(callId, "answer").onAnswer(videoState);
@@ -2116,8 +2115,7 @@ protected void answerVideo(String callId, int videoState) {
21162115
}
21172116
}
21182117

2119-
/** {@hide} */
2120-
protected void answer(String callId) {
2118+
private void answer(String callId) {
21212119
Log.i(this, "answer %s", callId);
21222120
if (mConnectionById.containsKey(callId)) {
21232121
findConnectionForAction(callId, "answer").onAnswer();

0 commit comments

Comments
 (0)