ref(LargeVideoManager): remove unused method

'_isConnectionActive' is not used anymore
This commit is contained in:
paweldomas 2017-06-05 14:44:50 -05:00 committed by yanas
parent a2a2a583de
commit e38dd0e9d3
1 changed files with 0 additions and 16 deletions

View File

@ -256,22 +256,6 @@ export default class LargeVideoManager {
});
}
/**
* Checks whether a participant's peer connection status is active.
* There is no JitsiParticipant for local id we skip checking local
* participant and report it as having no connectivity issues.
*
* @param {string} id the id of participant(MUC nickname)
* @returns {boolean} <tt>true</tt> when participant connection status is
* {@link ParticipantConnectionStatus.ACTIVE} and <tt>false</tt> otherwise.
* @private
*/
_isConnectionActive(id) {
return APP.conference.isLocalId(id)
|| APP.conference.getParticipantConnectionStatus(this.id)
=== ParticipantConnectionStatus.ACTIVE;
}
/**
* Shows/hides notification about participant's connectivity issues to be
* shown on the large video area.