override fun equals()

in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/OrchestrationConnectionsState.kt [49:54]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other !is OrchestrationConnectionsState) return false
        if (connections != other.connections) return false
        return true
    }