override fun equals()

in jetbrains-core/src/software/aws/toolkits/jetbrains/core/tools/Tool.kt [9:19]


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

        other as Tool<*>

        if (type.id != other.type.id) return false
        if (path != other.path) return false

        return true
    }