You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2015/05/20 06:49:38 UTC

cordova-wp8 git commit: assign async task to var to prevent warning

Repository: cordova-wp8
Updated Branches:
  refs/heads/master 3ef90c084 -> 9abd0115a


assign async task to var to prevent warning


Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/9abd0115
Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/9abd0115
Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/9abd0115

Branch: refs/heads/master
Commit: 9abd0115a723492b63472789fafd82535a52127e
Parents: 3ef90c0
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue May 19 21:47:13 2015 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue May 19 21:47:13 2015 -0700

----------------------------------------------------------------------
 template/cordovalib/NativeExecution.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/9abd0115/template/cordovalib/NativeExecution.cs
----------------------------------------------------------------------
diff --git a/template/cordovalib/NativeExecution.cs b/template/cordovalib/NativeExecution.cs
index d26bb3e..b3fd109 100644
--- a/template/cordovalib/NativeExecution.cs
+++ b/template/cordovalib/NativeExecution.cs
@@ -124,7 +124,7 @@ namespace WPCordovaClassLib.Cordova
 
                 bc.OnCustomScript += OnCustomScriptHandler;
 
-                Windows.System.Threading.ThreadPool.RunAsync((workItem) =>
+                var tsk = Windows.System.Threading.ThreadPool.RunAsync((workItem) =>
                 {
                     try
                     {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org