Add Missing Delegate Call

Issue gh-11658
This commit is contained in:
Josh Cummings 2024-08-06 17:51:25 -06:00
parent 816ebe38b5
commit f75cb17f35
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
1 changed files with 1 additions and 6 deletions

View File

@ -42,11 +42,6 @@ public final class OpenSaml4AuthenticationRequestResolver implements Saml2Authen
private final BaseOpenSamlAuthenticationRequestResolver delegate;
private Consumer<AuthnRequestContext> contextConsumer = (parameters) -> {
};
private Clock clock = Clock.systemUTC();
/**
* Construct an {@link OpenSaml4AuthenticationRequestResolver}
* @param registrations a repository for relying and asserting party configuration
@ -104,7 +99,7 @@ public final class OpenSaml4AuthenticationRequestResolver implements Saml2Authen
*/
public void setClock(Clock clock) {
Assert.notNull(clock, "clock must not be null");
this.clock = clock;
this.delegate.setClock(clock);
}
/**