From e3e0f0dffe5e202c2299bae46b4da2a90a2e303c Mon Sep 17 00:00:00 2001 From: JanooGwan Date: Mon, 16 Mar 2026 22:54:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20checkstyle=20=EC=A4=84=20=EA=B8=B8?= =?UTF-8?q?=EC=9D=B4=20=EC=9C=84=EB=B0=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/notification/service/NotificationService.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/gg/agit/konect/domain/notification/service/NotificationService.java b/src/main/java/gg/agit/konect/domain/notification/service/NotificationService.java index 62200ad3..27c11e52 100644 --- a/src/main/java/gg/agit/konect/domain/notification/service/NotificationService.java +++ b/src/main/java/gg/agit/konect/domain/notification/service/NotificationService.java @@ -119,7 +119,8 @@ public void sendChatNotification(Integer receiverId, Integer roomId, String send data.put("path", "chats/" + roomId); List messages = tokens.stream() - .map(token -> new ExpoPushMessage(token, senderName, truncatedBody, data, DEFAULT_NOTIFICATION_CHANNEL_ID)) + .map(token -> new ExpoPushMessage( + token, senderName, truncatedBody, data, DEFAULT_NOTIFICATION_CHANNEL_ID)) .toList(); HttpHeaders headers = new HttpHeaders(); @@ -239,7 +240,8 @@ public void sendGroupChatNotification( } List messages = tokens.stream() - .map(token -> new ExpoPushMessage(token, clubName, previewBody, data, DEFAULT_NOTIFICATION_CHANNEL_ID)) + .map(token -> new ExpoPushMessage( + token, clubName, previewBody, data, DEFAULT_NOTIFICATION_CHANNEL_ID)) .toList(); HttpHeaders headers = new HttpHeaders();