Skip to content

Commit 94ef4f1

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 4815bc2 commit 94ef4f1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

server/src/main/java/org/elasticsearch/index/codec/vectors/es93/ES93HnswScalarQuantizedVectorsFormat.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,15 @@ protected FlatVectorsFormat flatVectorsFormat() {
6969

7070
@Override
7171
public KnnVectorsWriter fieldsWriter(SegmentWriteState state) throws IOException {
72-
return new Lucene99HnswVectorsWriter(state, maxConn, beamWidth, flatVectorsFormat.fieldsWriter(state), numMergeWorkers, mergeExec, 0);
72+
return new Lucene99HnswVectorsWriter(
73+
state,
74+
maxConn,
75+
beamWidth,
76+
flatVectorsFormat.fieldsWriter(state),
77+
numMergeWorkers,
78+
mergeExec,
79+
0
80+
);
7381
}
7482

7583
@Override

0 commit comments

Comments
 (0)