Skip to content

Commit d0cf565

Browse files
author
Ajay Kannan
committed
minor fix to DatastoreOptions hashCode
1 parent 0f566f6 commit d0cf565

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreOptions.java

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

151151
@Override
152152
public int hashCode() {
153-
return baseHashCode() ^ Objects.hash(namespace);
153+
return Objects.hash(baseHashCode(), namespace);
154154
}
155155

156156
@Override

0 commit comments

Comments
 (0)