override fun equals()

in src/rider/main/kotlin/com/jetbrains/rider/plugins/efcore/ui/items/IconItem.kt [18:25]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || other::class != this::class) return false

        other as IconItem<*>

        return other.data?.equals(data) ?: false
    }