Skip to content

Commit

Permalink
re apache#3724: tablet transaction log
Browse files Browse the repository at this point in the history
* simpler hash code
  • Loading branch information
ivakegg committed Aug 28, 2023
1 parent 8f9b5ed commit 371debf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public Date getDate() {

@Override
public int hashCode() {
return getDate().hashCode();
return Long.hashCode(ts);
}

@Override
Expand Down

0 comments on commit 371debf

Please sign in to comment.