From 1a6fa6f8397a35ca9a29dd30837a3afdcdab9886 Mon Sep 17 00:00:00 2001 From: leegwichan Date: Fri, 1 Aug 2025 15:38:16 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20CustomizeTimeBoxEntity=20=EC=97=90?= =?UTF-8?q?=EC=84=9C=20time=20=EC=9D=B4=20nullable=20=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../debatetimer/entity/customize/CustomizeTimeBoxEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java b/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java index 9480b05e..fc8b0a9b 100644 --- a/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java +++ b/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java @@ -119,7 +119,7 @@ public CustomizeTimeBoxEntity(CustomizeTableEntity customizeTable, CustomizeTime this.customizeTable = customizeTable; this.sequence = sequence; this.stance = timeBox.getStance(); - this.time = timeBox.getTime(); + this.time = timeBox.getTime() == null ? null : timeBox.getTimePerTeam() * 2; // TODO : Nullable 의논 this.speaker = timeBox.getSpeaker(); this.speechType = timeBox.getSpeechType(); this.boxType = timeBox.getBoxType(); From f1fb41aaeb4a281463e164bcd2ea57871dacea74 Mon Sep 17 00:00:00 2001 From: leegwichan Date: Fri, 1 Aug 2025 15:47:30 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20CustomizeTimeBoxEntity=20=EC=97=90?= =?UTF-8?q?=EC=84=9C=20time=20=EC=9D=B4=20nullable=20=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../debatetimer/entity/customize/CustomizeTimeBoxEntity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java b/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java index fc8b0a9b..09dc6f4c 100644 --- a/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java +++ b/src/main/java/com/debatetimer/entity/customize/CustomizeTimeBoxEntity.java @@ -119,7 +119,7 @@ public CustomizeTimeBoxEntity(CustomizeTableEntity customizeTable, CustomizeTime this.customizeTable = customizeTable; this.sequence = sequence; this.stance = timeBox.getStance(); - this.time = timeBox.getTime() == null ? null : timeBox.getTimePerTeam() * 2; // TODO : Nullable 의논 + this.time = timeBox.getTime() == null ? timeBox.getTimePerTeam() * 2 : timeBox.getTime(); // TODO : Nullable 의논 this.speaker = timeBox.getSpeaker(); this.speechType = timeBox.getSpeechType(); this.boxType = timeBox.getBoxType();