override fun equals()

in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/OrchestartionLogging.kt [42:47]


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