Skip to content

Commit 5c0df3b

Browse files
committed
merge : w2-3 to w2-4
2 parents cf8c1a1 + 410e4c2 commit 5c0df3b

40 files changed

+159
-20
lines changed

src/main/java/com/programmers/springweekly/ConsoleApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ public void run(String... args) {
4545
}
4646
}
4747
}
48+
4849
}

src/main/java/com/programmers/springweekly/ConsoleCustomer.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,5 @@ private void getBlackList() {
8383

8484
console.outputGetCustomerList(customerBlacklistResponse);
8585
}
86+
8687
}

src/main/java/com/programmers/springweekly/ConsoleVoucher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,5 @@ private void selectVoucher() {
7777

7878
console.outputGetVoucherAll(voucherListResponse);
7979
}
80+
8081
}

src/main/java/com/programmers/springweekly/VoucherProgramApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ public class VoucherProgramApplication {
99
public static void main(String[] args) {
1010
SpringApplication.run(VoucherProgramApplication.class, args);
1111
}
12+
1213
}
13-

src/main/java/com/programmers/springweekly/domain/CustomerMenu.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ public static CustomerMenu from(String type) {
1414
throw new IllegalArgumentException("Input: " + type + ", 찾으시는 고객 메뉴가 없습니다.");
1515
}
1616
}
17+
1718
}

src/main/java/com/programmers/springweekly/domain/ProgramMenu.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ public static ProgramMenu from(String type) {
1313
throw new IllegalArgumentException("Input: " + type + ", 찾으시는 프로그램 메뉴가 없습니다.");
1414
}
1515
}
16+
1617
}

src/main/java/com/programmers/springweekly/domain/VoucherMenu.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ public static VoucherMenu from(String type) {
1313
throw new IllegalArgumentException("Input: " + type + ", 찾으시는 바우처 메뉴가 없습니다.");
1414
}
1515
}
16+
1617
}

src/main/java/com/programmers/springweekly/domain/customer/Customer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
package com.programmers.springweekly.domain.customer;
22

3+
import java.util.UUID;
34
import lombok.Builder;
45
import lombok.Getter;
56

6-
import java.util.UUID;
7-
87
@Getter
98
public class Customer {
109

@@ -20,4 +19,5 @@ public Customer(UUID customerId, String customerName, String customerEmail, Cust
2019
this.customerEmail = customerEmail;
2120
this.customerType = customerType;
2221
}
22+
2323
}

src/main/java/com/programmers/springweekly/domain/customer/CustomerType.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ public static CustomerType from(String type) {
1515
public static boolean isBlacklistedCustomer(CustomerType customerType) {
1616
return customerType == CustomerType.BLACKLIST;
1717
}
18+
1819
}

src/main/java/com/programmers/springweekly/domain/voucher/FixedAmountVoucher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ public long getVoucherAmount() {
3131
public VoucherType getVoucherType() {
3232
return VoucherType.FIXED;
3333
}
34+
3435
}

0 commit comments

Comments
 (0)