Fix whitespace issues in format-off code
Fix a few whitespace issues in format-off code that would otherwise fail checkstyle. Issue gh-8945
This commit is contained in:
+2
-2
@@ -230,8 +230,8 @@ public final class JeeConfigurer<H extends HttpSecurityBuilder<H>> extends Abstr
|
||||
* @return the {@link AuthenticationUserDetailsService} to use
|
||||
*/
|
||||
private AuthenticationUserDetailsService<PreAuthenticatedAuthenticationToken> getUserDetailsService() {
|
||||
return (this.authenticationUserDetailsService != null)
|
||||
? new PreAuthenticatedGrantedAuthoritiesUserDetailsService() : this.authenticationUserDetailsService;
|
||||
return (this.authenticationUserDetailsService != null) ? this.authenticationUserDetailsService
|
||||
: new PreAuthenticatedGrantedAuthoritiesUserDetailsService();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
+2
-1
@@ -349,7 +349,8 @@ public class Saml2LoginConfigurerTests {
|
||||
.authorizeRequests((authz) -> authz
|
||||
.anyRequest().authenticated()
|
||||
)
|
||||
.saml2Login((saml2) -> {});
|
||||
.saml2Login((saml2) -> {
|
||||
});
|
||||
// @formatter:on
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user