From 54d4bdfa9df98566cefb0114f4b7774fed61a937 Mon Sep 17 00:00:00 2001 From: mikekks Date: Sun, 22 Mar 2026 14:09:05 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=9A=8C=EA=B3=A0=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=ED=95=A0=EB=95=8C=20=EB=A7=88=EA=B0=90?= =?UTF-8?q?=EC=9D=BC=20=EA=B2=80=EC=A6=9D=20=EB=A1=9C=EC=A7=81=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/layer/domain/retrospect/entity/Retrospect.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/layer-domain/src/main/java/org/layer/domain/retrospect/entity/Retrospect.java b/layer-domain/src/main/java/org/layer/domain/retrospect/entity/Retrospect.java index d5b2d820..ba7f7972 100644 --- a/layer-domain/src/main/java/org/layer/domain/retrospect/entity/Retrospect.java +++ b/layer-domain/src/main/java/org/layer/domain/retrospect/entity/Retrospect.java @@ -82,9 +82,10 @@ public void validateAnalysisStatusIsNotDone() { public void updateRetrospect(String title, String introduction, LocalDateTime deadline, Time time) { - if (deadline != null && deadline.isBefore(time.now())) { - throw new RetrospectException(INVALID_DEADLINE); - } + // 회고가 마감되더라도, 회고 자체를 수정할 수 있다. + // if (deadline != null && deadline.isBefore(time.now())) { + // throw new RetrospectException(INVALID_DEADLINE); + // } this.title = title; this.introduction = introduction;