diff options
author | sr55 <[email protected]> | 2013-11-19 22:54:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-11-19 22:54:16 +0000 |
commit | c32a46c925608e51be9edcd6b5647c50124dd16a (patch) | |
tree | fcd2cb8c04f326d07145117bbc03f130d1170b60 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 5e4d8c7244a85fafa7ae477f8378a0c56e7ba365 (diff) |
WinGui: Fix a large number of stylecop warnings.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5900 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
5 files changed, 6 insertions, 7 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs b/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs index 720330c50..d5ee86555 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Base/EncodeBase.cs @@ -290,7 +290,7 @@ namespace HandBrake.ApplicationServices.Services.Base return null;
}
- catch (Exception exc)
+ catch (Exception)
{
return null;
}
@@ -371,7 +371,7 @@ namespace HandBrake.ApplicationServices.Services.Base }
}
}
- catch (Exception exc)
+ catch (Exception)
{
// Do Nothing.
}
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs index 61bb1b575..42b066ee1 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Encode.cs @@ -258,7 +258,7 @@ namespace HandBrake.ApplicationServices.Services this.HbProcess.CancelOutputRead();
this.ShutdownFileWriter();
}
- catch (Exception exc)
+ catch (Exception)
{
// This exception doesn't warrent user interaction, but it should be logged (TODO)
}
diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs index 28754e15c..167394764 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs @@ -98,7 +98,7 @@ namespace HandBrake.ApplicationServices.Services HandBrakeUtils.MessageLogged += this.HandBrakeInstanceMessageLogged;
HandBrakeUtils.ErrorLogged += this.HandBrakeInstanceErrorLogged;
}
- catch (Exception exc)
+ catch (Exception)
{
// Do nothing.
}
@@ -178,7 +178,7 @@ namespace HandBrake.ApplicationServices.Services this.scanLog.Dispose();
instance.Dispose();
}
- catch (Exception exc)
+ catch (Exception)
{
// Do Nothing
}
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs index b0cfc9a74..7bc569ed7 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs @@ -440,7 +440,7 @@ namespace HandBrake.ApplicationServices.Services }
}
}
- catch (Exception exc)
+ catch (Exception)
{
RecoverFromCorruptedPresetFile(this.builtInPresetFile);
this.UpdateBuiltInPresets();
diff --git a/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs b/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs index e7f4990bc..39dc86471 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs @@ -87,7 +87,6 @@ namespace HandBrake.ApplicationServices.Services encodeService.ProcessLogs(destination, configuration);
}
-
/// <summary>
/// Start the service
/// </summary>
|