From 5a2f12cb03d237efa9f079568b551ec681e13851 Mon Sep 17 00:00:00 2001 From: Jared Date: Fri, 5 Mar 2021 20:25:38 -0800 Subject: [PATCH] Cleanup --- Desktop.Core/Services/WebRtcSession.cs | 4 ++-- Desktop.Linux/Services/ChatUiServiceLinux.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Desktop.Core/Services/WebRtcSession.cs b/Desktop.Core/Services/WebRtcSession.cs index 84cd9bf4..bee69405 100644 --- a/Desktop.Core/Services/WebRtcSession.cs +++ b/Desktop.Core/Services/WebRtcSession.cs @@ -91,10 +91,10 @@ namespace Remotely.Desktop.Core.Services await PeerSession.InitializeAsync(config); - PeerSession.LocalSdpReadytoSend += PeerSession_LocalSdpReadytoSend; ; + PeerSession.LocalSdpReadytoSend += PeerSession_LocalSdpReadytoSend; PeerSession.Connected += PeerConnection_Connected; PeerSession.IceStateChanged += PeerConnection_IceStateChanged; - PeerSession.IceCandidateReadytoSend += PeerSession_IceCandidateReadytoSend; ; + PeerSession.IceCandidateReadytoSend += PeerSession_IceCandidateReadytoSend; CaptureChannel = await PeerSession.AddDataChannelAsync("ScreenCapture", true, true); CaptureChannel.BufferingChanged += DataChannel_BufferingChanged; diff --git a/Desktop.Linux/Services/ChatUiServiceLinux.cs b/Desktop.Linux/Services/ChatUiServiceLinux.cs index ec635f20..5f4be5d3 100644 --- a/Desktop.Linux/Services/ChatUiServiceLinux.cs +++ b/Desktop.Linux/Services/ChatUiServiceLinux.cs @@ -46,7 +46,7 @@ namespace Remotely.Desktop.Linux.Services Dispatcher.UIThread.Post(() => { var chatWindow = new ChatWindow(); - chatWindow.Closing += ChatWindow_Closing; ; + chatWindow.Closing += ChatWindow_Closing; ChatViewModel = chatWindow.DataContext as ChatWindowViewModel; ChatViewModel.PipeStreamWriter = writer; ChatViewModel.OrganizationName = organizationName;