Skip to content

Commit

Permalink
refactor : 2/29 피드백 반영
Browse files Browse the repository at this point in the history
input parameter 명 ManualLotto로 수정
  • Loading branch information
fucct committed Feb 29, 2020
1 parent d73a3c7 commit f6085be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/lotto/domain/LottoCount.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public LottoCount(String manualLotto, int totalLotto) {
this.autoLotto = totalLotto - this.manualLotto;
}

private void validate(String input) {
StringUtil.checkNull(input);
StringUtil.checkBlank(input);
StringUtil.checkNumberFormat(input);
StringUtil.checkRange(input);
private void validate(String ManualLotto) {
StringUtil.checkNull(ManualLotto);
StringUtil.checkBlank(ManualLotto);
StringUtil.checkNumberFormat(ManualLotto);
StringUtil.checkRange(ManualLotto);
}

private void validateMoney(String input, int totalLotto) {
Expand Down

0 comments on commit f6085be

Please sign in to comment.