Skip to content

Commit 517c728

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent fa68a06 commit 517c728

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

backend/src/main/java/io/f1/backend/global/config/CorsConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
package io.f1.backend.global.config;
22

3-
import java.util.List;
43
import org.springframework.context.annotation.Bean;
54
import org.springframework.context.annotation.Configuration;
65
import org.springframework.web.cors.CorsConfiguration;
76
import org.springframework.web.cors.CorsConfigurationSource;
87
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
98

9+
import java.util.List;
10+
1011
@Configuration
1112
public class CorsConfig {
1213
@Bean

backend/src/main/java/io/f1/backend/global/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class SecurityConfig {
3232
@Bean
3333
public SecurityFilterChain userFilterChain(HttpSecurity http) throws Exception {
3434
http.csrf(AbstractHttpConfigurer::disable)
35-
.cors(Customizer.withDefaults())
35+
.cors(Customizer.withDefaults())
3636
.exceptionHandling(
3737
exception ->
3838
exception.authenticationEntryPoint(customAuthenticationEntryPoint))

0 commit comments

Comments
 (0)