Skip to content

Commit

Permalink
refactor: 사용하지 않는 메서드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
jhsseonn committed Mar 16, 2024
1 parent 01837ab commit 8c5d4f6
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,6 @@ private void validateUserInGoalTeams(final Goal goal, final User user) {
}
}

private List<Long> getTeamUserIds(final Goal goal) {
return goal.getTeams()
.stream()
.map(goalTeam -> goalTeam.getUser().getId())
.toList();
}

private void validateExistStamp(final Long userId, final int day) {
final boolean isExistsStamp = stampRepository.existsByUserIdAndDayAndDeletedIsFalse(userId, day);
if (isExistsStamp) {
Expand Down

0 comments on commit 8c5d4f6

Please sign in to comment.