LUCENE-3892: fix compilation error

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/pforcodec_3892@1357354 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-07-04 18:01:28 +00:00
parent 3fb11c875d
commit 7afaab4589
1 changed files with 2 additions and 4 deletions

View File

@ -63,17 +63,15 @@ public final class BulkVIntPostingsFormat extends PostingsFormat {
this(BlockTreeTermsWriter.DEFAULT_MIN_BLOCK_SIZE, BlockTreeTermsWriter.DEFAULT_MAX_BLOCK_SIZE, DEFAULT_BLOCK_SIZE);
}
// nocommit: can't expose this until we write blockSize
// nocommit: can't make this public until we write blockSize
// into index somewhere (where/how? private file? pass through to
// sep somehow?)
/*
public BulkVIntPostingsFormat(int minBlockSize, int maxBlockSize, int blockSize) {
private BulkVIntPostingsFormat(int minBlockSize, int maxBlockSize, int blockSize) {
super("BulkVInt");
this.blockSize = blockSize;
this.minBlockSize = minBlockSize;
this.maxBlockSize = maxBlockSize;
}
*/
@Override
public String toString() {