Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsanw committed Nov 26, 2020
1 parent bd4ac47 commit dde8cc8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ private int index() {
*/
private int probe() {
// Fast path for reliable well-distributed probe, available from JDK 7+.
// As long as PROBE is final this branch will be inlined.
// As long as PROBE is final static this branch will be constant folded
// (i.e removed).
if (PROBE != -1) {
int probe;
if ((probe = UNSAFE.getInt(Thread.currentThread(), PROBE)) == 0) {
Expand Down

0 comments on commit dde8cc8

Please sign in to comment.