Skip to content

Commit

Permalink
Fix javadoc comments
Browse files Browse the repository at this point in the history
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
  • Loading branch information
reta committed Oct 16, 2024
1 parent 2078ad0 commit bc5f4ee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* Extends {@link FilterCodec} to reuse the functionality of Lucene Codec.
* Supports two modes zstd and zstd_no_dict.
* Uses Lucene99 as the delegate codec
* Uses Lucene912 as the delegate codec
*
* @opensearch.internal
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
import static org.opensearch.index.codec.customcodecs.backward_codecs.lucene99.Lucene99QatCodec.DEFAULT_COMPRESSION_LEVEL;

/**
* QatDeflate99Codec provides a DEFLATE compressor using the <a
* QatDeflate912Codec provides a DEFLATE compressor using the <a
* href="https://github.com/intel/qat-java">qat-java</a> library.
*/
public class QatDeflate912Codec extends Lucene912QatCodec implements CodecSettings, CodecAliases {

/** Creates a new QatDeflate99Codec instance with the default compression level. */
/** Creates a new QatDeflate912Codec instance with the default compression level. */
public QatDeflate912Codec() {
this(DEFAULT_COMPRESSION_LEVEL);
}

/**
* Creates a new QatDeflate99Codec instance.
* Creates a new QatDeflate912Codec instance.
*
* @param compressionLevel The compression level.
*/
Expand All @@ -43,7 +43,7 @@ public QatDeflate912Codec(int compressionLevel) {
}

/**
* Creates a new QatDeflate99Codec instance with the default compression level.
* Creates a new QatDeflate912Codec instance with the default compression level.
*
* @param compressionLevel The compression level.
* @param supplier supplier for QAT acceleration mode.
Expand All @@ -53,7 +53,7 @@ public QatDeflate912Codec(int compressionLevel, Supplier<QatZipper.Mode> supplie
}

/**
* Creates a new QatDeflate99Codec instance.
* Creates a new QatDeflate912Codec instance.
*
* @param mapperService The mapper service.
* @param logger The logger.
Expand All @@ -64,7 +64,7 @@ public QatDeflate912Codec(MapperService mapperService, Logger logger, int compre
}

/**
* Creates a new QatDeflate99Codec instance.
* Creates a new QatDeflate912Codec instance.
*
* @param mapperService The mapper service.
* @param logger The logger.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
import static org.opensearch.index.codec.customcodecs.backward_codecs.lucene99.Lucene99QatCodec.DEFAULT_COMPRESSION_LEVEL;

/**
* QatLz499Codec provides an LZ4 compressor using the <a
* QatLz4912Codec provides an LZ4 compressor using the <a
* href="https://github.com/intel/qat-java">qat-java</a> library.
*/
public class QatLz4912Codec extends Lucene912QatCodec implements CodecSettings, CodecAliases {

/** Creates a new QatLz499Codec instance with the default compression level. */
/** Creates a new QatLz4912Codec instance with the default compression level. */
public QatLz4912Codec() {
this(DEFAULT_COMPRESSION_LEVEL);
}

/**
* Creates a new QatLz499Codec instance.
* Creates a new QatLz4912Codec instance.
*
* @param compressionLevel The compression level.
*/
Expand All @@ -43,7 +43,7 @@ public QatLz4912Codec(int compressionLevel) {
}

/**
* Creates a new QatLz499Codec instance with the default compression level.
* Creates a new QatLz4912Codec instance with the default compression level.
*
* @param compressionLevel The compression level.
* @param supplier supplier for QAT acceleration mode.
Expand All @@ -53,7 +53,7 @@ public QatLz4912Codec(int compressionLevel, Supplier<QatZipper.Mode> supplier) {
}

/**
* Creates a new QatLz499Codec instance.
* Creates a new QatLz4912Codec instance.
*
* @param mapperService The mapper service.
* @param logger The logger.
Expand All @@ -64,7 +64,7 @@ public QatLz4912Codec(MapperService mapperService, Logger logger, int compressio
}

/**
* Creates a new QatLz499Codec instance.
* Creates a new QatLz4912Codec instance.
*
* @param mapperService The mapper service.
* @param logger The logger.
Expand Down

0 comments on commit bc5f4ee

Please sign in to comment.