mirror of https://github.com/apache/lucene.git
minor code formatting
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/realtime_search@1097494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e02fe6ebb0
commit
3ee258ae1b
|
@ -146,7 +146,9 @@ final class TermsHashPerField extends InvertedDocConsumerPerField {
|
|||
if (numPostingInt + intPool.intUpto > DocumentsWriterPerThread.INT_BLOCK_SIZE)
|
||||
intPool.nextBuffer();
|
||||
|
||||
if (ByteBlockPool.BYTE_BLOCK_SIZE - bytePool.byteUpto < numPostingInt*ByteBlockPool.FIRST_LEVEL_SIZE) bytePool.nextBuffer();
|
||||
if (ByteBlockPool.BYTE_BLOCK_SIZE - bytePool.byteUpto < numPostingInt*ByteBlockPool.FIRST_LEVEL_SIZE) {
|
||||
bytePool.nextBuffer();
|
||||
}
|
||||
|
||||
intUptos = intPool.buffer;
|
||||
intUptoStart = intPool.intUpto;
|
||||
|
|
Loading…
Reference in New Issue