Skip to content

Commit f5e801f

Browse files
committed
Clean Code
Signed-off-by: Vikasht34 <[email protected]>
1 parent b1afdef commit f5e801f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/opensearch/knn/quantization/models/quantizationState/OneBitScalarQuantizationState.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public ScalarQuantizationParams getQuantizationParams() {
7373
*/
7474
@Override
7575
public void writeTo(StreamOutput out) throws IOException {
76-
out.writeVInt(Version.CURRENT.id); // Write the versionF
76+
out.writeVInt(Version.CURRENT.id); // Write the version
7777
quantizationParams.writeTo(out);
7878
out.writeFloatArray(meanThresholds);
7979
out.writeOptionalArray(belowThresholdMeans != null ? new FloatArrayWrapper[] { new FloatArrayWrapper(belowThresholdMeans) } : null);

src/test/java/org/opensearch/knn/index/codec/KNN990Codec/NativeEngines990KnnVectorsWriterFlushTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public void testFlush_WithQuantization() {
302302
final Long expectedTimesGetVectorValuesIsCalled = vectorsPerField.stream().filter(Predicate.not(Map::isEmpty)).count();
303303
knnVectorValuesFactoryMockedStatic.verify(
304304
() -> KNNVectorValuesFactory.getVectorValues(any(VectorDataType.class), any(DocsWithFieldSet.class), any()),
305-
times(Math.toIntExact(expectedTimesGetVectorValuesIsCalled) * 1)
305+
times(Math.toIntExact(expectedTimesGetVectorValuesIsCalled))
306306
);
307307
}
308308
}

0 commit comments

Comments
 (0)