From 02f1bbdf303bb08352e190c07abcba1b4b5c06de Mon Sep 17 00:00:00 2001 From: TaeyeonRoyce Date: Tue, 27 Feb 2024 11:01:12 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EC=82=AC=EC=9A=A9=EB=90=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EB=A9=94=EC=84=9C=EB=93=9C=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/com/petqua/domain/product/option/Sex.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/kotlin/com/petqua/domain/product/option/Sex.kt b/src/main/kotlin/com/petqua/domain/product/option/Sex.kt index a8a6af6d..66da716c 100644 --- a/src/main/kotlin/com/petqua/domain/product/option/Sex.kt +++ b/src/main/kotlin/com/petqua/domain/product/option/Sex.kt @@ -13,10 +13,6 @@ enum class Sex( HERMAPHRODITE("자웅동체"), ; - fun isLogical(other: Sex): Boolean { - return this != HERMAPHRODITE - } - companion object { fun from(name: String): Sex { return enumValues().find { it.name == name.uppercase(Locale.ENGLISH) }