Skip to content

Commit cb25f0e

Browse files
committed
Merge pull request #110 from eamonnmcmanus/master
Compute StorageOptions.hashCode() correctly. This was accidentally omitted from my previous PR.
2 parents 27cd1d7 + 2372a5b commit cb25f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)