From d3b21b35fc7b3c7b38a8285a688d527578753f05 Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Tue, 4 Feb 2014 15:23:02 -0800 Subject: [PATCH] CB-5365 Remove unused exception var to prevent warnings? --- src/wp/FileTransfer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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);