Missing javadocs.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1411264 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrien Grand 2012-11-19 15:59:00 +00:00
parent 4231ed4ca2
commit b552744bc2
1 changed files with 2 additions and 0 deletions

View File

@ -20,10 +20,12 @@ package org.apache.lucene.codecs.compressing;
/** CompressionCodec that uses {@link CompressionMode#HIGH_COMPRESSION} */
public class HighCompressionCompressingCodec extends CompressingCodec {
/** Constructor that allows to configure the chunk size. */
public HighCompressionCompressingCodec(int chunkSize) {
super("HighCompressionCompressingStoredFields", CompressionMode.HIGH_COMPRESSION, chunkSize);
}
/** Default constructor. */
public HighCompressionCompressingCodec() {
this(1 << 14);
}