Skip to content

Commit

Permalink
feat: (#746) String 파싱 로직을 toString으로 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdtls690 committed Oct 15, 2023
1 parent 7859e43 commit c51db46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void validatePostMine(final Post post, final Member member) {

@Override
public String parseTarget(final Long targetId) {
return String.valueOf(targetId);
return targetId.toString();
}

}

0 comments on commit c51db46

Please sign in to comment.