override fun equals()

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


        override fun equals(other: Any?): Boolean {
            if (other === this) return true
            if (other !is Connection) return false
            if (clientId != other.clientId) return false
            if (clientRole != other.clientRole) return false
            if (clientPid != other.clientPid) return false
            return true
        }