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

This commit is contained in:
Wanqiang Ji 2020-09-29 22:06:25 +08:00 committed by GitHub
parent d686a655bc
commit 143bdd4188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}