Skip to content

Commit

Permalink
MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)
Browse files Browse the repository at this point in the history
(cherry picked from commit 143bdd4)
  • Loading branch information
jiwq authored and aajisaka committed Sep 29, 2020
1 parent 71d0061 commit 578370d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ long and(long mask) {
return d0 & mask;
}

/** Shift right operation (<<). */
/** Shift right operation (>>). */
long shiftRight(int n) {
return (d1 << (BITS_PER_LONG - n)) + (d0 >>> n);
}
Expand Down

0 comments on commit 578370d

Please sign in to comment.