From 4ded288c5d9b9057dab02a87ec59440c6faa2a91 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Thu, 12 Jan 2017 18:33:30 -0500 Subject: [PATCH] few changes --- src/NzbDrone.Core/AutoImporter/AutoImporterBase.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/NzbDrone.Core/AutoImporter/AutoImporterBase.cs b/src/NzbDrone.Core/AutoImporter/AutoImporterBase.cs index 23f6c4aba..7d95bdfe8 100644 --- a/src/NzbDrone.Core/AutoImporter/AutoImporterBase.cs +++ b/src/NzbDrone.Core/AutoImporter/AutoImporterBase.cs @@ -9,27 +9,24 @@ using NzbDrone.Core.IndexerSearch.Definitions; using NzbDrone.Core.Parser; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.ThingiProvider; +using NzbDrone.Core.Tv; namespace NzbDrone.Core.AutoImporter { public abstract class AutoImporterBase : IAutoImporter where TSettings : IProviderConfig, new() { - // protected readonly IAutoImporterStatusService _autoImporterStatusService; protected readonly IConfigService _configService; protected readonly IParsingService _parsingService; protected readonly Logger _logger; public abstract string Name { get; } - // public abstract DownloadProtocol Protocol { get; } public abstract string Link { get; } public abstract bool Enabled { get; } - // public abstract bool SupportsSearch { get; } - public AutoImporterBase(/*IAutoImporterStatusService autoImporterStatusService, */IConfigService configService, IParsingService parsingService, Logger logger) + public AutoImporterBase(IConfigService configService, IParsingService parsingService, Logger logger) { - //_autoImporterStatusService = autoImporterStatusService; _configService = configService; _parsingService = parsingService; _logger = logger; @@ -62,7 +59,7 @@ namespace NzbDrone.Core.AutoImporter protected TSettings Settings => (TSettings)Definition.Settings; - public abstract IList Fetch(); + public abstract IList Fetch(); public ValidationResult Test() { @@ -87,5 +84,6 @@ namespace NzbDrone.Core.AutoImporter { return Definition.Name; } + } }