override fun equals()

in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/Binary.kt [17:22]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other !is Binary) return false
        if (other.hashCode != hashCode) return false
        return bytes.contentEquals(other.bytes)
    }