Skip to content

Commit

Permalink
Fix return type to allow further security config
Browse files Browse the repository at this point in the history
Issue gh-10245
  • Loading branch information
dvanbler authored and marcusdacoregio committed Sep 13, 2021
1 parent 670cf99 commit c55f1f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2020 the original author or authors.
* Copyright 2002-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -160,7 +160,7 @@ public Saml2LoginConfigurer<B> authenticationManager(AuthenticationManager authe
* @param repo the repository of relying parties
* @return the {@link Saml2LoginConfigurer} for further configuration
*/
public Saml2LoginConfigurer relyingPartyRegistrationRepository(RelyingPartyRegistrationRepository repo) {
public Saml2LoginConfigurer<B> relyingPartyRegistrationRepository(RelyingPartyRegistrationRepository repo) {
this.relyingPartyRegistrationRepository = repo;
return this;
}
Expand Down

0 comments on commit c55f1f8

Please sign in to comment.