Skip to content

Commit e690768

Browse files
committed
Fix Checkstyle
1 parent 1eaac8b commit e690768

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

servlet/spring-boot/java/authentication/mfa/formLogin+ott/src/main/java/example/FormLoginConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ String auth() {
3939
@Bean
4040
Customizer<HttpSecurity> formLogin() {
4141
// @formatter:off
42-
return (http) -> http
43-
.authorizeHttpRequests((authz) -> authz.requestMatchers(PATH).permitAll())
44-
.formLogin((form) -> form.loginPage(PATH));
45-
// @formatter:on
42+
return (http) -> http
43+
.authorizeHttpRequests((authz) -> authz.requestMatchers(PATH).permitAll())
44+
.formLogin((form) -> form.loginPage(PATH));
45+
// @formatter:on
4646
}
4747

48-
}
48+
}

servlet/spring-boot/java/authentication/mfa/formLogin+ott/src/main/java/example/OttLoginConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ String auth() {
3939
@Bean
4040
Customizer<HttpSecurity> ottLogin() {
4141
// @formatter:off
42-
return (http) -> http
43-
.authorizeHttpRequests((authz) -> authz.requestMatchers(PATH).permitAll())
44-
.oneTimeTokenLogin((ott) -> ott.loginPage(PATH));
45-
// @formatter:on
42+
return (http) -> http
43+
.authorizeHttpRequests((authz) -> authz.requestMatchers(PATH).permitAll())
44+
.oneTimeTokenLogin((ott) -> ott.loginPage(PATH));
45+
// @formatter:on
4646
}
4747

48-
}
48+
}

0 commit comments

Comments
 (0)