Skip to content

Commit 1c13c5c

Browse files
committed
spotless
1 parent fc96ec3 commit 1c13c5c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

server/src/main/java/org/elasticsearch/index/mapper/vectors/DenseVectorFieldMapper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1780,8 +1780,7 @@ boolean updatableTo(IndexOptions update) {
17801780
// quantization could not behave as expected with different confidence intervals (and quantiles) to be created
17811781
updatable = int4HnswIndexOptions.m >= this.m && confidenceInterval == int4HnswIndexOptions.confidenceInterval;
17821782
}
1783-
return updatable
1784-
|| (update.type.equals(VectorIndexType.BBQ_HNSW) && ((BBQHnswIndexOptions) update).m >= m);
1783+
return updatable || (update.type.equals(VectorIndexType.BBQ_HNSW) && ((BBQHnswIndexOptions) update).m >= m);
17851784
}
17861785
}
17871786

0 commit comments

Comments
 (0)