1
0
mirror of synced 2026-05-22 13:23:17 +00:00

Format authorizeHttpRequests Blocks

This commit formats authorizeHttpRequests blocks
to use the same parameter name and places the
reference on the same line as the parameter.

Issue gh-13067
This commit is contained in:
Josh Cummings
2025-06-19 18:06:52 -06:00
parent cf6b52d6f7
commit 777447e1d9
19 changed files with 62 additions and 68 deletions
@@ -104,7 +104,7 @@ public class AuthenticationTests {
DefaultSecurityFilterChain springSecurity(HttpSecurity http) throws Exception {
// @formatter:off
http
.authorizeHttpRequests((requests) -> requests
.authorizeHttpRequests((authorize) -> authorize
.anyRequest().authenticated()
)
.sessionManagement((sessions) -> sessions