You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2014/02/11 00:22:28 UTC

[16/17] git commit: CB-5365 Remove unused exception var to prevent warnings?

CB-5365 Remove unused exception var to prevent warnings?


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/d3b21b35
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/d3b21b35
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/d3b21b35

Branch: refs/heads/master
Commit: d3b21b35fc7b3c7b38a8285a688d527578753f05
Parents: be44194
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Tue Feb 4 15:23:02 2014 -0800
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Tue Feb 4 15:23:02 2014 -0800

----------------------------------------------------------------------
 src/wp/FileTransfer.cs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/d3b21b35/src/wp/FileTransfer.cs
----------------------------------------------------------------------
diff --git a/src/wp/FileTransfer.cs b/src/wp/FileTransfer.cs
index 8b03d85..f9fe3fe 100644
--- a/src/wp/FileTransfer.cs
+++ b/src/wp/FileTransfer.cs
@@ -306,7 +306,7 @@ namespace WPCordovaClassLib.Cordova.Commands
 
                 webRequest.BeginGetRequestStream(uploadCallback, reqState);
             }
-            catch (Exception ex)
+            catch (Exception /*ex*/)
             {
 
                 DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, new FileTransferError(ConnectionError)),callbackId);
@@ -468,7 +468,7 @@ namespace WPCordovaClassLib.Cordova.Commands
                     webRequest = (HttpWebRequest)WebRequest.Create(downloadOptions.Url);
                 }
             }
-            catch (Exception ex)
+            catch (Exception /*ex*/)
             {
                 DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR,
                                       new FileTransferError(InvalidUrlError, downloadOptions.Url, null, 0)));
@@ -794,7 +794,7 @@ namespace WPCordovaClassLib.Cordova.Commands
 
                 webRequest.BeginGetResponse(ReadCallback, reqState);
             }
-            catch (Exception ex)
+            catch (Exception /*ex*/)
             {
                 if (!reqState.isCancelled)
                 {
@@ -853,7 +853,7 @@ namespace WPCordovaClassLib.Cordova.Commands
                                           reqState.options.CallbackId);
                 }
             }
-            catch (Exception ex)
+            catch (Exception /*ex*/)
             {
                 FileTransferError transferError = new FileTransferError(ConnectionError, reqState.options.Server, reqState.options.FilePath, 403);
                 DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, transferError), reqState.options.CallbackId);