Skip to content

Commit 1388766

Browse files
committed
Use explicit private modifier for consistency.
1 parent 5dde491 commit 1388766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Renci.SshNet/Session.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ private void SocketConnect(string host, int port)
16851685
/// <exception cref="SshConnectionException">The socket is closed.</exception>
16861686
/// <exception cref="SshOperationTimeoutException">The read has timed-out.</exception>
16871687
/// <exception cref="SocketException">The read failed.</exception>
1688-
void SocketRead(int length, byte[] buffer)
1688+
private void SocketRead(int length, byte[] buffer)
16891689
{
16901690
if (SocketAbstraction.Read(_socket, buffer, 0, length, InfiniteTimeSpan) > 0)
16911691
{

0 commit comments

Comments
 (0)