Skip to content

Commit c5ca52c

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 0372175 commit c5ca52c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

x-pack/plugin/gpu/src/main/java/org/elasticsearch/xpack/gpu/reflect/VectorsFormatReflectionUtils.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,14 @@ public class VectorsFormatReflectionUtils {
3939

4040
} catch (IllegalAccessException e) {
4141
throw new AssertionError("should not happen, check opens", e);
42-
}
43-
catch (ReflectiveOperationException e) {
42+
} catch (ReflectiveOperationException e) {
4443
throw new AssertionError(e);
4544
}
4645
}
4746

4847
public static IndexOutput getVectorDataIndexOutput(FlatVectorsWriter flatVectorWriter) {
4948
assert flatVectorWriter instanceof ES814ScalarQuantizedVectorsFormat.ES814ScalarQuantizedVectorsWriter;
50-
var delegate = (Lucene99ScalarQuantizedVectorsWriter)DELEGATE_WRITER_HANDLE.get(flatVectorWriter);
49+
var delegate = (Lucene99ScalarQuantizedVectorsWriter) DELEGATE_WRITER_HANDLE.get(flatVectorWriter);
5150
return (IndexOutput) QUANTIZED_VECTOR_DATA_HANDLE.get(delegate);
5251
}
5352

0 commit comments

Comments
 (0)