override fun equals()

in dsl/common/dsl-common/src/main/kotlin/io/kotless/dsl/model/HttpRequest.kt [16:25]


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

            other as Content

            if (!bytes.contentEquals(other.bytes)) return false

            return true
        }