Skip to content

Commit 163a635

Browse files
style: 코드 포매팅
1 parent 5f37ff3 commit 163a635

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

core/src/main/java/hello/core/AutoAppConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// @Configuration 어노테이션으로 등록된 클래스도 빈으로 자동이 등록되고 설정 정보도 자동 등록된다.
1010
// 보통은 Configuration을 스캔 대상에서 제외하지는 않는다.
1111
// 본 실습에서는 이 컴포넌트 스캔 객체가 잘 작동하는지 시험하기 위해 AppConfig.java 는 스캔 대상에서 제외한다.
12-
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class),
12+
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class),
1313
basePackages = "hello.core"
1414
)
1515
public class AutoAppConfig {

core/src/main/java/hello/core/CoreApplication.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
@SpringBootApplication
77
public class CoreApplication {
88

9-
public static void main(String[] args) {
10-
SpringApplication.run(CoreApplication.class, args);
11-
}
9+
public static void main(String[] args) {
10+
SpringApplication.run(CoreApplication.class, args);
11+
}
1212

1313
}

core/src/main/java/hello/core/discount/DiscountPolicy.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
public interface DiscountPolicy {
66

77
/**
8-
*
98
* @param member
109
* @param price
1110
* @return 할인 대상 금액

0 commit comments

Comments
 (0)