瀏覽代碼

Use explicit private modifier for consistency.

drieseng 9 年之前
父節點
當前提交
1388766a03
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Renci.SshNet/Session.cs

+ 1 - 1
src/Renci.SshNet/Session.cs

@@ -1685,7 +1685,7 @@ namespace Renci.SshNet
         /// <exception cref="SshConnectionException">The socket is closed.</exception>
         /// <exception cref="SshOperationTimeoutException">The read has timed-out.</exception>
         /// <exception cref="SocketException">The read failed.</exception>
-        void SocketRead(int length, byte[] buffer)
+        private void SocketRead(int length, byte[] buffer)
         {
             if (SocketAbstraction.Read(_socket, buffer, 0, length, InfiniteTimeSpan) > 0)
             {