From 43cfc1adf05f5c4584c2793e4cf0398f652121ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=B1=EC=9E=AC?= <103095432+seongjae6751@users.noreply.github.com> Date: Sat, 23 Nov 2024 23:05:51 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=A9=94=EC=8B=9C=EC=A7=80=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EC=A4=91=EA=B4=84=ED=98=B8=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?(#1069)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../community/keyword/model/ArticleKeywordEventListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/koreatech/koin/domain/community/keyword/model/ArticleKeywordEventListener.java b/src/main/java/in/koreatech/koin/domain/community/keyword/model/ArticleKeywordEventListener.java index 2ec2c2d80..9196b1d7a 100644 --- a/src/main/java/in/koreatech/koin/domain/community/keyword/model/ArticleKeywordEventListener.java +++ b/src/main/java/in/koreatech/koin/domain/community/keyword/model/ArticleKeywordEventListener.java @@ -90,6 +90,6 @@ private Notification createAndRecordNotification( } private String generateDescription(String keyword) { - return "방금 등록된 {%s} 공지를 확인해보세요!".formatted(keyword); + return "방금 등록된 %s 공지를 확인해보세요!".formatted(keyword); } }