Skip to content

Commit

Permalink
refactor: (#491) 불필요한 출력문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jeomxon committed Sep 5, 2023
1 parent 04c3770 commit 7fb38cd
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ public void changeNicknameByCycle(final String nickname, final Long days) {
}

private boolean isNotPassedChangingCycle(final Long days) {
System.out.println("this.getCreatedAt() = " + this.getCreatedAt());
System.out.println("this.getUpdatedAt() = " + this.getUpdatedAt());
return (!this.getCreatedAt().equals(this.getUpdatedAt())) &&
(this.getUpdatedAt().isAfter(LocalDateTime.now().minusDays(days)));
}
Expand Down

0 comments on commit 7fb38cd

Please sign in to comment.