override fun equals()

in src/main/kotlin/org/jetbrains/tinygoplugin/sdk/TinyGoSdk.kt [101:106]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || javaClass != other.javaClass) return false
        val sdk = other as TinyGoSdk
        return FileUtil.comparePaths(urlToPath(sdk.tinyGoHomeUrl), urlToPath(tinyGoHomeUrl)) == 0
    }