1
0
mirror of synced 2026-05-22 21:33:16 +00:00

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
@@ -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);
}
/**