mirror of https://github.com/apache/lucene.git
Fix incorrect BitUtil.deinterleave() description
Signed-off-by: Adrien Grand <jpountz@gmail.com> Closes #367
This commit is contained in:
parent
1971ef3109
commit
d039730638
|
@ -134,7 +134,7 @@ public final class BitUtil {
|
|||
}
|
||||
|
||||
/**
|
||||
* Deinterleaves long value back to two concatenated 32bit values
|
||||
* Extract just the even-bits value as a long from the bit-interleaved value
|
||||
*/
|
||||
public static long deinterleave(long b) {
|
||||
b &= MAGIC[0];
|
||||
|
|
Loading…
Reference in New Issue