style: Updated formatting for ZoomRoom.cs and IHasParticipants.cs

This commit is contained in:
Jason DeVito
2021-08-17 16:46:24 -05:00
parent c4f6afa412
commit 3fa2954ca0
2 changed files with 705 additions and 653 deletions

View File

@@ -56,10 +56,6 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
set set
{ {
_currentParticipants = value; _currentParticipants = value;
foreach (var participant in _currentParticipants)
{
Debug.Console(1, "[CurrentParticipants] participant UserId: {0} Name: {1} IsHost: {2}", participant.UserId, participant.Name, participant.IsHost);
}
OnParticipantsChanged(); OnParticipantsChanged();
} }
} }
@@ -75,8 +71,6 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
{ {
var handler = ParticipantsListHasChanged; var handler = ParticipantsListHasChanged;
Debug.Console(1, "[OnParticipantsChanged] Event Fired - handler is {0}", handler == null ? "null" : "not null");
if (handler == null) return; if (handler == null) return;
handler(this, new EventArgs()); handler(this, new EventArgs());