@ -27,11 +27,6 @@ namespace MediaBrowser.Providers.TV
/// </summary>
/// </summary>
class RemoteSeriesProvider : BaseMetadataProvider , IDisposable
class RemoteSeriesProvider : BaseMetadataProvider , IDisposable
{
{
/// <summary>
/// The _provider manager
/// </summary>
private readonly IProviderManager _providerManager ;
/// <summary>
/// <summary>
/// The tv db
/// The tv db
/// </summary>
/// </summary>
@ -60,10 +55,9 @@ namespace MediaBrowser.Providers.TV
/// <param name="httpClient">The HTTP client.</param>
/// <param name="httpClient">The HTTP client.</param>
/// <param name="logManager">The log manager.</param>
/// <param name="logManager">The log manager.</param>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="providerManager">The provider manager.</param>
/// <param name="zipClient">The zip client.</param>
/// <param name="zipClient">The zip client.</param>
/// <exception cref="System.ArgumentNullException">httpClient</exception>
/// <exception cref="System.ArgumentNullException">httpClient</exception>
public RemoteSeriesProvider ( IHttpClient httpClient , ILogManager logManager , IServerConfigurationManager configurationManager , I ProviderManager providerManager , I ZipClient zipClient )
public RemoteSeriesProvider ( IHttpClient httpClient , ILogManager logManager , IServerConfigurationManager configurationManager , I ZipClient zipClient )
: base ( logManager , configurationManager )
: base ( logManager , configurationManager )
{
{
if ( httpClient = = null )
if ( httpClient = = null )
@ -71,7 +65,6 @@ namespace MediaBrowser.Providers.TV
throw new ArgumentNullException ( "httpClient" ) ;
throw new ArgumentNullException ( "httpClient" ) ;
}
}
HttpClient = httpClient ;
HttpClient = httpClient ;
_providerManager = providerManager ;
_zipClient = zipClient ;
_zipClient = zipClient ;
Current = this ;
Current = this ;
}
}