Cleaned up IndexerService and tests

This commit is contained in:
Mark McDowall 2013-02-21 08:38:31 -08:00
parent 5b50aa5d59
commit 563db453fc
6 changed files with 34 additions and 51 deletions

View file

@ -36,7 +36,6 @@ namespace NzbDrone.Core.Jobs
private ProgressNotification _notification;
public JobController(NotificationProvider notificationProvider, IEnumerable<IJob> jobs, IJobRepository jobRepository, Logger logger)
{
StopWatch = new Stopwatch();
@ -61,7 +60,6 @@ namespace NzbDrone.Core.Jobs
}
}
public virtual void QueueScheduled()
{
lock (_executionLock)
@ -260,7 +258,5 @@ namespace NzbDrone.Core.Jobs
_logger.Trace("resetting queue processor thread");
_jobThread = new Thread(ProcessQueue) { Name = "JobQueueThread" };
}
}
}