override fun equals()

in gradle/sdk-plugins/src/main/kotlin/aws/sdk/kotlin/gradle/codegen/dsl/SmithyProjection.kt [67:80]


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

        other as SmithyProjection

        if (name != other.name) return false
        if (projectionRootDir != other.projectionRootDir) return false
        if (imports != other.imports) return false
        if (transforms != other.transforms) return false
        if (plugins != other.plugins) return false

        return true
    }