Skip to content

Commit bc5f4ee

Browse files
committed
Fix javadoc comments
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 2078ad0 commit bc5f4ee

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/main/java/org/opensearch/index/codec/customcodecs/Lucene912CustomCodec.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* Extends {@link FilterCodec} to reuse the functionality of Lucene Codec.
2525
* Supports two modes zstd and zstd_no_dict.
26-
* Uses Lucene99 as the delegate codec
26+
* Uses Lucene912 as the delegate codec
2727
*
2828
* @opensearch.internal
2929
*/

src/main/java/org/opensearch/index/codec/customcodecs/QatDeflate912Codec.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
import static org.opensearch.index.codec.customcodecs.backward_codecs.lucene99.Lucene99QatCodec.DEFAULT_COMPRESSION_LEVEL;
2424

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

31-
/** Creates a new QatDeflate99Codec instance with the default compression level. */
31+
/** Creates a new QatDeflate912Codec instance with the default compression level. */
3232
public QatDeflate912Codec() {
3333
this(DEFAULT_COMPRESSION_LEVEL);
3434
}
3535

3636
/**
37-
* Creates a new QatDeflate99Codec instance.
37+
* Creates a new QatDeflate912Codec instance.
3838
*
3939
* @param compressionLevel The compression level.
4040
*/
@@ -43,7 +43,7 @@ public QatDeflate912Codec(int compressionLevel) {
4343
}
4444

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

5555
/**
56-
* Creates a new QatDeflate99Codec instance.
56+
* Creates a new QatDeflate912Codec instance.
5757
*
5858
* @param mapperService The mapper service.
5959
* @param logger The logger.
@@ -64,7 +64,7 @@ public QatDeflate912Codec(MapperService mapperService, Logger logger, int compre
6464
}
6565

6666
/**
67-
* Creates a new QatDeflate99Codec instance.
67+
* Creates a new QatDeflate912Codec instance.
6868
*
6969
* @param mapperService The mapper service.
7070
* @param logger The logger.

src/main/java/org/opensearch/index/codec/customcodecs/QatLz4912Codec.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
import static org.opensearch.index.codec.customcodecs.backward_codecs.lucene99.Lucene99QatCodec.DEFAULT_COMPRESSION_LEVEL;
2424

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

31-
/** Creates a new QatLz499Codec instance with the default compression level. */
31+
/** Creates a new QatLz4912Codec instance with the default compression level. */
3232
public QatLz4912Codec() {
3333
this(DEFAULT_COMPRESSION_LEVEL);
3434
}
3535

3636
/**
37-
* Creates a new QatLz499Codec instance.
37+
* Creates a new QatLz4912Codec instance.
3838
*
3939
* @param compressionLevel The compression level.
4040
*/
@@ -43,7 +43,7 @@ public QatLz4912Codec(int compressionLevel) {
4343
}
4444

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

5555
/**
56-
* Creates a new QatLz499Codec instance.
56+
* Creates a new QatLz4912Codec instance.
5757
*
5858
* @param mapperService The mapper service.
5959
* @param logger The logger.
@@ -64,7 +64,7 @@ public QatLz4912Codec(MapperService mapperService, Logger logger, int compressio
6464
}
6565

6666
/**
67-
* Creates a new QatLz499Codec instance.
67+
* Creates a new QatLz4912Codec instance.
6868
*
6969
* @param mapperService The mapper service.
7070
* @param logger The logger.

0 commit comments

Comments
 (0)