diff --git a/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKind.kt b/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKind.kt index ed89695c6ff..423749ae539 100644 --- a/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKind.kt +++ b/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKind.kt @@ -32,9 +32,6 @@ object NativeIdePlatformKind : IdePlatformKind() { override val version get() = TargetPlatformVersion.NoVersion override fun createArguments(init: FakeK2NativeCompilerArguments.() -> Unit) = FakeK2NativeCompilerArguments().apply(init) } - - override fun equals(other: Any?): Boolean = other === NativeIdePlatformKind - override fun hashCode(): Int = javaClass.hashCode() } // These are fake compiler arguments for Kotlin/Native - only for usage within IDEA plugin: