override fun equals()

in jetbrains-core/src/software/aws/toolkits/jetbrains/services/PathMapper.kt [104:114]


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

        other as PathMapping

        if (localRoot != other.localRoot) return false
        if (remoteRoot != other.remoteRoot) return false

        return true
    }