From 5c3ac79043bf534fe058da6f5596279abc7a1426 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sun, 1 Sep 2019 11:28:07 +0200 Subject: [PATCH] Removed obsolete code. --- src/Sonarr.Http/Authentication/AuthenticationService.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Sonarr.Http/Authentication/AuthenticationService.cs b/src/Sonarr.Http/Authentication/AuthenticationService.cs index 20e4da7ae..8481f1a20 100644 --- a/src/Sonarr.Http/Authentication/AuthenticationService.cs +++ b/src/Sonarr.Http/Authentication/AuthenticationService.cs @@ -28,7 +28,6 @@ namespace Sonarr.Http.Authentication private static readonly Logger _authLogger = LogManager.GetLogger("Auth"); private const string AnonymousUser = "Anonymous"; private readonly IUserService _userService; - private readonly NancyContext _nancyContext; private static string API_KEY; private static AuthenticationType AUTH_METHOD; @@ -36,10 +35,9 @@ namespace Sonarr.Http.Authentication [ThreadStatic] private static NancyContext _context; - public AuthenticationService(IConfigFileProvider configFileProvider, IUserService userService, NancyContext nancyContext) + public AuthenticationService(IConfigFileProvider configFileProvider, IUserService userService) { _userService = userService; - _nancyContext = nancyContext; API_KEY = configFileProvider.ApiKey; AUTH_METHOD = configFileProvider.AuthenticationMethod; }