public boolean equals()

in s3-artifact-storage-server/src/main/java/jetbrains/buildServer/artifacts/s3/orphans/OrphanedArtifact.java [32:37]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    OrphanedArtifact that = (OrphanedArtifact) o;
    return Objects.equals(bucket, that.bucket) && Objects.equals(path, that.path) && Objects.equals(size, that.size);
  }