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:
Wolfgang Hoschek 2006-11-29 02:35:43 +00:00
parent 06a9b2e22a
commit f620d56554
1 changed files with 1 additions and 1 deletions

View File

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