Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ktos committed Nov 12, 2024
1 parent a9e6f52 commit 8f34643
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/ApiKeyHeaderAuthenticationHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

#endregion License

using System;
using System.Linq;
using System.Security.Claims;
using System.Text.Encodings.Web;
Expand Down Expand Up @@ -59,14 +60,12 @@ public class ApiKeyHeaderAuthenticationHandler
/// <param name="options"></param>
/// <param name="logger"></param>
/// <param name="encoder"></param>
/// <param name="clock"></param>
public ApiKeyHeaderAuthenticationHandler(
IOptionsMonitor<ApiKeyHeaderAuthenticationOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock
UrlEncoder encoder
)
: base(options, logger, encoder, clock) { }
: base(options, logger, encoder) { }

/// <summary>
/// Handles authentication by checking if there is proper api key set in HTTP header
Expand Down

0 comments on commit 8f34643

Please sign in to comment.