Skip to content

Commit

Permalink
Compute StorageOptions.hashCode() correctly. This was accidentally om…
Browse files Browse the repository at this point in the history
…itted from my previous PR.
  • Loading branch information
eamonnmcmanus committed Jun 10, 2015
1 parent b90c26c commit 15733c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Builder toBuilder() {

@Override
public int hashCode() {
return super.hashCode() ^ Objects.hash(pathDelimiter);
return baseHashCode() ^ Objects.hash(pathDelimiter);
}

@Override
Expand Down

0 comments on commit 15733c3

Please sign in to comment.