override fun equals()

in aws-runtime/aws-signing/common/src/aws/sdk/kotlin/runtime/auth/signing/AwsSigning.kt [29:39]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || this::class != other::class) return false

        other as SigningResult<*>

        if (output != other.output) return false
        if (!signature.contentEquals(other.signature)) return false

        return true
    }