override fun equals()

in src/common/src/aws/sdk/kotlin/crt/auth/signing/AwsSigningResult.kt [30:40]


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

        other as AwsSigningResult

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

        return true
    }