-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[예지니어스] 지하철 정보 관리 - 인수테스트 미션 제출합니다. #48
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
안녕하세요 예지니어스, 리뷰어 구구입니다
미션 구현 잘 하셨어요 👏
아직 프론트, 테스트 코드는 피드백 남기지 않았어요
피드백 확인하시고 수정하셔서 리뷰 재요청 주시면 관련 부분도 피드백 남길게요
궁금한 점 생기면 코멘트 남기거나 dm 주세요
src/main/java/wooteco/subway/admin/controller/LineController.java
Outdated
Show resolved
Hide resolved
src/main/java/wooteco/subway/admin/controller/LineController.java
Outdated
Show resolved
Hide resolved
src/main/java/wooteco/subway/admin/controller/LineController.java
Outdated
Show resolved
Hide resolved
src/main/java/wooteco/subway/admin/controller/LineController.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예지니어스, 피드백 반영 잘 하셨어요 👏
간단하게 몇 가지 피드백 남겼어요
수정해서 요청 주시면 반영할게요!
궁금한 점 생기면 코멘트 남기거나 dm 주세요
src/main/java/wooteco/subway/admin/controller/mock/MockController.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예지니어스, 피드백 반영한 부분 확인했어요
테스트 코드도 깔끔하게 잘 추가하셨어요 👍
pr은 머지 처리하겠습니다. 구현하느라 수고하셨어요
private LocalTime startTime; | ||
private LocalTime endTime; | ||
private int intervalTime; | ||
private Set<LineStation> stations; | ||
private Set<LineStation> stations = new HashSet<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stations 관련 로직들이 많네요
일급 컬렉션으로 추출하면 중복 코드를 제거하고 좀더 코드 복잡도를 줄일 수 있을거에요
안녕하세요 :)
지하철 정보 관리 - 인수테스트 미션 제출합니다.