override fun equals()

in hot-reload-devtools-api/src/main/kotlin/org/jetbrains/compose/devtools/api/WindowsState.kt [28:33]


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