MAPREDUCE-7289. Fix wrong comment in LongLong.java (#2338)

(cherry picked from commit 143bdd4188)
This commit is contained in:
Wanqiang Ji 2020-09-29 22:06:25 +08:00 committed by Akira Ajisaka
parent 9176e8fe5d
commit eb6134cd22
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}