浏览代码

Formatting

drieseng 5 年之前
父节点
当前提交
59d908d308
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/Renci.SshNet/Common/AsyncResult.cs

+ 4 - 0
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);
+            }
         }
 
         /// <summary>