override fun equals()

in runtime/protocol/http/common/src/aws/smithy/kotlin/runtime/http/util/CaseInsensitiveMap.kt [73:76]


    override fun equals(other: Any?): Boolean {
        if (other == null || other !is Map.Entry<*, *>) return false
        return other.key == key && other.value == value
    }