CB-5365 Remove unused exception var to prevent warnings?

This commit is contained in:
Jesse MacFadyen
2014-02-04 15:23:02 -08:00
parent be44194066
commit d3b21b35fc
+4 -4
View File
@@ -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);