From 210fa9a7cac9bf3bee956c778ef4d573a5add91d Mon Sep 17 00:00:00 2001 From: Ji-Ha Date: Tue, 20 Sep 2022 19:19:23 +0900 Subject: [PATCH] =?UTF-8?q?[#25]=20refactoring(bookmark):=20=EC=A3=BC?= =?UTF-8?q?=EC=84=9D=EC=B2=98=EB=A6=AC=EB=90=9C=20constructor=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yapp/web2/domain/bookmark/entity/Bookmark.kt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt b/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt index 1417275..5477455 100644 --- a/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt +++ b/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt @@ -58,22 +58,6 @@ class Bookmark( if (remind) remindOn(Remind(account)) } -// constructor( -// userId: Long, -// folderId: Long?, -// folderEmoji: String?, -// folderName: String?, -// link: String, -// title: String?, -// remindTime: String?, -// image: String?, -// description: String? -// ) : this(userId, folderId, link, title, remindTime) { -// this.folderEmoji = folderEmoji -// this.folderName = folderName -// this.description = description -// this.image = image -// } fun restore(): Bookmark { this.deleted = false