Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 608993591
  • Loading branch information
kluever authored and Caliper Team committed Feb 21, 2024
1 parent 3546474 commit 2d08a42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static final class TestBenchmark {
long thing(long reps) {
long dummy = 0;
for (long i = 0; i < reps; i++) {
dummy += new Long(dummy).hashCode();
dummy += Long.hashCode(dummy);
}
return dummy;
}
Expand Down

0 comments on commit 2d08a42

Please sign in to comment.