Browse Source

Mark GetOrderedAuthenticationMethods static.

drieseng 9 years ago
parent
commit
4d6a868fd2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Renci.SshNet/ClientAuthentication.cs

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

@@ -108,7 +108,7 @@ namespace Renci.SshNet
             return false;
         }
 
-        private IEnumerable<IAuthenticationMethod> GetOrderedAuthenticationMethods(AuthenticationState authenticationState, IEnumerable<IAuthenticationMethod> matchingAuthenticationMethods)
+        private static IEnumerable<IAuthenticationMethod> GetOrderedAuthenticationMethods(AuthenticationState authenticationState, IEnumerable<IAuthenticationMethod> matchingAuthenticationMethods)
         {
             var skippedAuthenticationMethods = new List<IAuthenticationMethod>();