File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
x-pack/plugin/gpu/src/main/java/org/elasticsearch/xpack/gpu/reflect Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments