From c51db46d37cb41c43e216c22ce6da6e5c9fc4b40 Mon Sep 17 00:00:00 2001 From: JunH Date: Mon, 16 Oct 2023 02:03:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20(#746)=20String=20=ED=8C=8C=EC=8B=B1=20?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=EC=9D=84=20toString=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/report/service/strategy/ReportPostStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/com/votogether/domain/report/service/strategy/ReportPostStrategy.java b/backend/src/main/java/com/votogether/domain/report/service/strategy/ReportPostStrategy.java index b312b7e88..5f5d4c342 100644 --- a/backend/src/main/java/com/votogether/domain/report/service/strategy/ReportPostStrategy.java +++ b/backend/src/main/java/com/votogether/domain/report/service/strategy/ReportPostStrategy.java @@ -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(); } }