Skip to content

Commit

Permalink
Merge pull request #110 from eamonnmcmanus/master
Browse files Browse the repository at this point in the history
Compute StorageOptions.hashCode() correctly. This was accidentally omitted from my previous PR.
  • Loading branch information
aozarov committed Jun 10, 2015
2 parents 1c91695 + 9e29211 commit 24d6c7a
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 24d6c7a

Please sign in to comment.