From 2d6a743bb09541e7778702121038b0b094f70521 Mon Sep 17 00:00:00 2001 From: seoyeon0103 Date: Wed, 12 Nov 2025 13:04:59 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20:=20=EC=A3=BC=EC=84=9D=20=EC=A7=80?= =?UTF-8?q?=EC=9A=B0=EA=B8=B0=20=EB=B0=8F=20git=20action=20screct=20key=20?= =?UTF-8?q?=EC=98=AC=EB=A6=AC=EA=B8=B0=20=EC=9C=84=ED=95=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kwcapstone/Service/WebSocketService.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/main/java/com/kwcapstone/Service/WebSocketService.java b/src/main/java/com/kwcapstone/Service/WebSocketService.java index fd65f15..7c9e210 100644 --- a/src/main/java/com/kwcapstone/Service/WebSocketService.java +++ b/src/main/java/com/kwcapstone/Service/WebSocketService.java @@ -560,23 +560,6 @@ public void updateNode(NodeRequstDto nodeRequstDto){ throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, "업데이트 노드 저장 중 오류가 발생하였습니다." + e); } - -// String fileContent = null; -// try { -// fileContent = Files.readString(file.toPath(), StandardCharsets.UTF_8); -// } catch (IOException e) { -// throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, "변경사항 반영된 노드 스크립트를 읽어오는데 오류가 발생했습니다." + e); -// } -// -// // 4. List로 변환 -// List newNodes; -// try { -// ObjectMapper mapper = new ObjectMapper(); -// newNodes = mapper.readValue(nodesJson, new TypeReference>() {}); -// } catch (IOException e) { -// throw new ResponseStatusException(HttpStatus.INTERNAL_SERVER_ERROR, "노드 역직렬화 실패", e); -// } - messagingTemplate.convertAndSend("/topic/conference/"+ projectId, new NodeUpdateResponseDto("live_on_node", projectId, newNodes)); }