From 6e23818669fccbd9eb10df9005e96f315b937a5f Mon Sep 17 00:00:00 2001 From: 101 Date: Sat, 10 Feb 2024 14:36:59 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=84=EC=9A=94=EC=97=86=EB=8A=94=20?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../daemawiki/domain/document/model/DefaultDocument.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/com/example/daemawiki/domain/document/model/DefaultDocument.java b/src/main/java/com/example/daemawiki/domain/document/model/DefaultDocument.java index 85df9160..db80009b 100644 --- a/src/main/java/com/example/daemawiki/domain/document/model/DefaultDocument.java +++ b/src/main/java/com/example/daemawiki/domain/document/model/DefaultDocument.java @@ -40,14 +40,6 @@ public DefaultDocument(String title, DocumentType type, EditDateTime dateTime, L this.content = content; } - public void deleteGroup(String group) { - this.getGroups().remove(group); - } - - public Boolean isContain(String group) { - return this.getGroups().contains(group); - } - public void update(String title, DocumentType type, String content, List groups) { this.title = title; this.type = type;