override fun equals()

in src/main/kotlin/com/github/mkartashev/hserr/settings/SettingsStore.kt [88:95]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other?.javaClass != javaClass) return false

        other as SettingsStore

        return theState == other.theState
    }