Skip to content

Commit

Permalink
Add Missing Delegate Call
Browse files Browse the repository at this point in the history
  • Loading branch information
jzheaux committed Aug 7, 2024
1 parent d35dca3 commit e8aba07
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -104,7 +99,7 @@ public void setRequestMatcher(RequestMatcher requestMatcher) {
*/
public void setClock(Clock clock) {
Assert.notNull(clock, "clock must not be null");
this.clock = clock;
this.delegate.setClock(clock);
}

/**
Expand Down

0 comments on commit e8aba07

Please sign in to comment.