mirror of https://github.com/apache/lucene.git
find/replace tab --> space
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@480343 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
06a9b2e22a
commit
f620d56554
|
@ -1142,7 +1142,7 @@ public class MemoryIndex {
|
|||
private static int sizeOf(int n) {
|
||||
return IS_WORD_ALIGNED_VM ?
|
||||
// ((n-1)/PTR + 1) * PTR : // slow version
|
||||
(((n-1) >> LOG_PTR) + 1) << LOG_PTR : // fast version
|
||||
(((n-1) >> LOG_PTR) + 1) << LOG_PTR : // fast version
|
||||
n;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue