override fun equals()

in blockmap/src/main/kotlin/com/jetbrains/plugin/blockmap/core/Chunk.kt [18:25]


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