Skip to content

Commit

Permalink
Remove quiet flag usage in RemoveObjectsArgs class (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
balamurugana committed Oct 19, 2020
1 parent e9a2411 commit db5663b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/src/main/java/io/minio/RemoveObjectsArgs.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ public boolean equals(Object o) {
if (!super.equals(o)) return false;
RemoveObjectsArgs that = (RemoveObjectsArgs) o;
return bypassGovernanceMode == that.bypassGovernanceMode
&& quiet == that.quiet
&& Objects.equal(objects, that.objects);
}

@Override
public int hashCode() {
return Objects.hashCode(super.hashCode(), bypassGovernanceMode, objects, quiet);
return Objects.hashCode(super.hashCode(), bypassGovernanceMode, objects);
}
}

0 comments on commit db5663b

Please sign in to comment.