Skip to content

Commit

Permalink
remove redundant stubTypeSpecificClaims state machine
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Apr 7, 2024
1 parent b16953d commit 3ecb9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Alba/Security/AuthenticationExtensionBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected IEnumerable<Claim> processedClaims(Claim[]? additiveClaims, string[]?

protected virtual IEnumerable<Claim> stubTypeSpecificClaims()
{
yield break;
return Enumerable.Empty<Claim>();
}

protected (Claim[] additiveClaims, string[] removedClaims) extractScenarioSpecificClaims(HttpContext context)
Expand Down

0 comments on commit 3ecb9b6

Please sign in to comment.