Explorar el Código

Fix R# warnings.

Gert Driesen hace 11 años
padre
commit
c3350803bf

+ 1 - 1
Renci.SshClient/Renci.SshNet.Silverlight/SftpClient.SilverlightShared.cs

@@ -10,7 +10,7 @@ namespace Renci.SshNet
     {
         partial void ExecuteThread(Action action)
         {
-            ThreadPool.QueueUserWorkItem((o) => action());
+            ThreadPool.QueueUserWorkItem(o => action());
         }
     }
 }

+ 1 - 1
Renci.SshClient/Renci.SshNet.Silverlight/Shell.SilverlightShared.cs

@@ -10,7 +10,7 @@ namespace Renci.SshNet
     {
         partial void ExecuteThread(Action action)
         {
-            ThreadPool.QueueUserWorkItem((o) => action());
+            ThreadPool.QueueUserWorkItem(o => action());
         }
     }
 }

+ 1 - 1
Renci.SshClient/Renci.SshNet.Silverlight/SshCommand.SilverlightShared.cs

@@ -10,7 +10,7 @@ namespace Renci.SshNet
     {
         partial void ExecuteThread(Action action)
         {
-            ThreadPool.QueueUserWorkItem((o) => action());
+            ThreadPool.QueueUserWorkItem(o => action());
         }
     }
 }