From 070cfda21d39786c5375f8a0e4b49d53fd6c9815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Thu, 25 Jan 2024 16:30:57 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../one/nem/lacerta/setting/model/TagListItem.java | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/feature/setting/src/main/java/one/nem/lacerta/setting/model/TagListItem.java b/feature/setting/src/main/java/one/nem/lacerta/setting/model/TagListItem.java index 6b25b8c6..bf9796b4 100644 --- a/feature/setting/src/main/java/one/nem/lacerta/setting/model/TagListItem.java +++ b/feature/setting/src/main/java/one/nem/lacerta/setting/model/TagListItem.java @@ -4,13 +4,11 @@ public class TagListItem { String tagId; String tagName; - String tagDescription; String tagColor; - public TagListItem(String tagId, String tagName, String tagDescription, String tagColor) { + public TagListItem(String tagId, String tagName, String tagColor) { this.tagId = tagId; this.tagName = tagName; - this.tagDescription = tagDescription; this.tagColor = tagColor; } @@ -33,14 +31,6 @@ public class TagListItem { this.tagName = tagName; } - public String getTagDescription() { - return tagDescription; - } - - public void setTagDescription(String tagDescription) { - this.tagDescription = tagDescription; - } - public String getTagColor() { return tagColor; }