removed unused dependencies.

This commit is contained in:
Keivan Beigi
2013-03-05 11:58:53 -08:00
parent 4877ce405e
commit 10f4dd5a60
17 changed files with 25 additions and 87 deletions

View File

@@ -1,25 +1,13 @@
using System.Linq;
using NLog;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Model;
namespace NzbDrone.Core.DecisionEngine
{
public class LanguageSpecification
{
private readonly IConfigService _configService;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
public LanguageSpecification(IConfigService configService)
{
_configService = configService;
}
public LanguageSpecification()
{
}
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
{
logger.Trace("Checking if report meets language requirements. {0}", subject.Language);