Skip to content

Commit

Permalink
Make checkstyle happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Mar 26, 2024
1 parent 84f2583 commit 1a0d629
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public Elasticsearch814Codec() {
}

/**
* Constructor. Takes a {@link Zstd814StoredFieldsFormat.Mode} that describes whether to optimize for retrieval speed at the expense of worse space-efficiency or vice-versa.
* Constructor. Takes a {@link Zstd814StoredFieldsFormat.Mode} that describes whether to optimize for retrieval speed at the expense of
* worse space-efficiency or vice-versa.
*/
public Elasticsearch814Codec(Zstd814StoredFieldsFormat.Mode mode) {
super("Elasticsearch814", new Lucene99Codec());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public enum Mode {

final int level, blockSizeInBytes, blockDocCount;

private Mode(int level, int blockSizeInBytes, int blockDocCount) {
Mode(int level, int blockSizeInBytes, int blockDocCount) {
this.level = level;
this.blockSizeInBytes = blockSizeInBytes;
this.blockDocCount = blockDocCount;
Expand Down

0 comments on commit 1a0d629

Please sign in to comment.