override fun equals()

in src/main/kotlin/org/jetbrains/tinygoplugin/sdk/TinyGoDownloadingSdk.kt [23:28]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || javaClass != other.javaClass) return false
        val sdk = other as GoDownloadingSdk
        return sdkVersion.equals(sdk.version) && tinyGoHomeUrl == sdk.homeUrl
    }