Fix logic error in disconnectConferenceParticipants method in ImsConference.
- In disconnectConferenceParticipants, there is a call to
removeConferenceParticipant. This is problematic as the remove is called
in the middle of a for loop which loops through the
mConferenceParticipantConnections. It is also redundant as
disconnectConferenceParticipants calls mConferenceParticipantConnections.clear()
when it is done.
- There is also an orphaned "participant.getEndPoint()" call.
Change-Id: Ia43d2df699d3287856c1dcad7c7aae452db86c0d
1 file changed