diff options
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;
|