override fun equals()

in src/main/kotlin/com/github/mkartashev/hserr/miner/text/Text.kt [239:246]


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

            other as Cursor

            return offset == other.offset
        }