1
0
mirror of synced 2026-08-06 02:08:01 +00:00

Format authorizeExchange Blocks

This commit formats authorizeExchange blocks to
use a common variable name and ensure the
variable and reference are on the same line.

Issue gh-13067
This commit is contained in:
Josh Cummings
2025-06-19 18:29:38 -06:00
parent da6c7b8759
commit a4c338f8a5
22 changed files with 78 additions and 78 deletions
@@ -63,7 +63,7 @@ public class CustomX509Configuration {
.principalExtractor(principalExtractor)
.authenticationManager(authenticationManager)
)
.authorizeExchange((exchanges) -> exchanges
.authorizeExchange((authorize) -> authorize
.anyExchange().authenticated()
);
// @formatter:on
@@ -44,7 +44,7 @@ public class DefaultX509Configuration {
// @formatter:off
http
.x509(Customizer.withDefaults())
.authorizeExchange((exchanges) -> exchanges
.authorizeExchange((authorize) -> authorize
.anyExchange().authenticated()
);
// @formatter:on