Skip to content

Commit aa6b625

Browse files
committed
Merge pull request #110 from eamonnmcmanus/master
Compute StorageOptions.hashCode() correctly. This was accidentally omitted from my previous PR.
2 parents b90c26c + 15733c3 commit aa6b625

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gcloud-java-storage/src/main/java/com/google/gcloud/storage/StorageOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public Builder toBuilder() {
9595

9696
@Override
9797
public int hashCode() {
98-
return super.hashCode() ^ Objects.hash(pathDelimiter);
98+
return baseHashCode() ^ Objects.hash(pathDelimiter);
9999
}
100100

101101
@Override

0 commit comments

Comments
 (0)