Merge branch '6.2.x'

This commit is contained in:
Marcus Hert Da Coregio 2024-01-31 09:52:08 -03:00
commit c2dc61007f
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ See https://github.com/spring-projects/spring-security/tree/main#building-from-s
The wiki pages https://github.com/spring-projects/spring-framework/wiki/Code-Style[Code Style] and https://github.com/spring-projects/spring-framework/wiki/IntelliJ-IDEA-Editor-Settings[IntelliJ IDEA Editor Settings] define the source file coding standards we use along with some IDEA editor settings we customize. The wiki pages https://github.com/spring-projects/spring-framework/wiki/Code-Style[Code Style] and https://github.com/spring-projects/spring-framework/wiki/IntelliJ-IDEA-Editor-Settings[IntelliJ IDEA Editor Settings] define the source file coding standards we use along with some IDEA editor settings we customize.
To format the code as well as check the style, run `./gradle format check`. To format the code as well as check the style, run `./gradlew format check`.
[[submit-a-pull-request]] [[submit-a-pull-request]]
=== Submit a Pull Request === Submit a Pull Request

View File

@ -788,7 +788,7 @@ Java::
@Bean @Bean
public SecurityFilterChain filterChain(HttpSecurity http) { public SecurityFilterChain filterChain(HttpSecurity http) {
http http
.sessionManagement((session) - session .sessionManagement((session) -> session
.sessionFixation((sessionFixation) -> sessionFixation .sessionFixation((sessionFixation) -> sessionFixation
.newSession() .newSession()
) )