diff options
author | sr55 <[email protected]> | 2010-07-15 18:15:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-07-15 18:15:54 +0000 |
commit | 5c8cab7ea3c07e36b74bcb8c8198f8ef796e1530 (patch) | |
tree | e12cf9ce0520fc7d90e4af595375ff73d4865507 /win/C#/HandBrake.ApplicationServices/Services | |
parent | 9f576f433db5cd6d86af6986f66719fcff824957 (diff) |
WinGui:
- Cleanup
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3439 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Encode.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs index 79b82a2ea..e5dc74cec 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs @@ -18,8 +18,6 @@ namespace HandBrake.ApplicationServices.Services using HandBrake.ApplicationServices.Properties;
using HandBrake.ApplicationServices.Services.Interfaces;
- using Timer = System.Threading.Timer;
-
/// <summary>
/// Class which handles the CLI
/// </summary>
@@ -28,11 +26,6 @@ namespace HandBrake.ApplicationServices.Services #region Private Variables
/// <summary>
- /// An Encode Job
- /// </summary>
- private Job job;
-
- /// <summary>
/// The Log Buffer
/// </summary>
private StringBuilder logBuffer;
@@ -152,7 +145,6 @@ namespace HandBrake.ApplicationServices.Services /// </param>
protected void Run(Job encJob, bool enableLogging)
{
- this.job = encJob;
try
{
IsEncoding = true;
|