Skip to content

Commit

Permalink
fix fingerprint
Browse files Browse the repository at this point in the history
  • Loading branch information
dkdt committed Jan 13, 2025
1 parent acd176a commit 62c1003
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ int getHashFromHash(long hash, int index) {
}

private int fingerprint(long hash) {
return (int) hash;
}
return (int) (hash ^ (hash >>> 32));
}

}

0 comments on commit 62c1003

Please sign in to comment.