From ec66b16233f07cc05f9f1632d1d2e8f26a731a1a Mon Sep 17 00:00:00 2001 From: yoojinche Date: Fri, 15 Aug 2025 22:07:44 +0900 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8Frefractor:=20=EC=A4=91?= =?UTF-8?q?=EB=B3=B5=20=EB=B3=80=EC=88=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../withtime/be/withtimebe/domain/date/entity/DateCourse.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java b/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java index 3460c40..0f5f8b4 100644 --- a/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java +++ b/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java @@ -66,10 +66,10 @@ public class DateCourse extends BaseEntity { private List datePlaceDateCourses = new ArrayList<>(); // 연관 관계 맵핑 메소드 - public void addDatePlaceDateCourses(List datePlaceDateCourses) { + public void addDatePlaceDateCourses(List datePlaceDateCourseList) { for (DatePlaceDateCourse datePlaceDateCourse : datePlaceDateCourses) { datePlaceDateCourse.setDateCourse(this); } - datePlaceDateCourses.addAll(datePlaceDateCourses); + datePlaceDateCourses.addAll(datePlaceDateCourseList); } }