override def equals()

in core/src/main/scala/org/apache/spark/eventhubs/rdd/OffsetRange.scala [66:73]


  override def equals(obj: Any): Boolean = obj match {
    case that: OffsetRange =>
      this.name == that.name &&
        this.partitionId == that.partitionId &&
        this.fromSeqNo == that.fromSeqNo &&
        this.untilSeqNo == that.untilSeqNo
    case _ => false
  }