Skip to content

Commit

Permalink
Removed optionality from the CallContext in the issuer signing key va…
Browse files Browse the repository at this point in the history
…lidation delegate, updated the test skip validation delegates
  • Loading branch information
iNinja committed Nov 20, 2024
1 parent 0e9840a commit a4476e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal delegate ValidationResult<ValidatedSigningKeyLifetime> IssuerSigningKey
SecurityToken securityToken,
ValidationParameters validationParameters,
BaseConfiguration? configuration,
CallContext? callContext);
CallContext callContext);

/// <summary>
/// SigningKeyValidation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static class SkipValidationDelegates
SecurityToken securityToken,
ValidationParameters validationParameters,
BaseConfiguration? configuration,
CallContext? callContext)
CallContext callContext)
{
return new ValidatedSigningKeyLifetime(
null, // ValidFrom
Expand Down

0 comments on commit a4476e1

Please sign in to comment.