MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)
(cherry picked from commit 143bdd4188
)
This commit is contained in:
parent
9176e8fe5d
commit
eb6134cd22
|
@ -44,7 +44,7 @@ class LongLong {
|
|||
return d0 & mask;
|
||||
}
|
||||
|
||||
/** Shift right operation (<<). */
|
||||
/** Shift right operation (>>). */
|
||||
long shiftRight(int n) {
|
||||
return (d1 << (BITS_PER_LONG - n)) + (d0 >>> n);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue