瀏覽代碼

Fix R# warnings.

Gert Driesen 11 年之前
父節點
當前提交
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());
         }
     }
 }