override fun equals()

in src/main/kotlin/org/jetbrains/tinygoplugin/configuration/UserConfiguration.kt [89:93]


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