public boolean equals()

in common/src/main/java/org/apache/uniffle/common/storage/StorageInfo.java [104:121]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    StorageInfo that = (StorageInfo) o;
    return Objects.equals(mountPoint, that.mountPoint)
        && type == that.type
        && capacity == that.capacity
        && usedBytes == that.usedBytes
        && writingSpeed1M == that.writingSpeed1M
        && writingSpeed5M == that.writingSpeed5M
        && writingSpeed1H == that.writingSpeed1H
        && numberOfWritingFailures == that.numberOfWritingFailures
        && status == that.status;
  }