override fun equals()

in plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/bistro/corr/LayerParams.kt [43:57]


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

//        other as LayerParams

        if (added != other.added) return false
        if (type != other.type) return false
        if (diag != other.diag) return false
        if (color != other.color) return false
        if (mapSize != other.mapSize) return false

        return true
    }