From 59d908d308a5184c42a4b4afdaf470ef8cc457b0 Mon Sep 17 00:00:00 2001 From: drieseng Date: Sun, 5 Apr 2020 11:34:59 +0200 Subject: [PATCH] Formatting --- src/Renci.SshNet/Common/AsyncResult.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Renci.SshNet/Common/AsyncResult.cs b/src/Renci.SshNet/Common/AsyncResult.cs index d045c90c..3466a030 100644 --- a/src/Renci.SshNet/Common/AsyncResult.cs +++ b/src/Renci.SshNet/Common/AsyncResult.cs @@ -67,11 +67,15 @@ namespace Renci.SshNet.Common // If the event exists, set it if (_asyncWaitHandle != null) + { _asyncWaitHandle.Set(); + } // If a callback method was set, call it if (_asyncCallback != null) + { _asyncCallback(this); + } } ///