File tree Expand file tree Collapse file tree
flight/flight-core/src/main/java/org/apache/arrow/flight/grpc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,14 +54,16 @@ public byte[] getByte(String key) {
5454
5555 @ Override
5656 public Iterable <String > getAll (String key ) {
57- final Iterable <String > all = this .metadata .getAll (Metadata .Key .of (key , Metadata .ASCII_STRING_MARSHALLER ));
57+ final Iterable <String > all =
58+ this .metadata .getAll (Metadata .Key .of (key , Metadata .ASCII_STRING_MARSHALLER ));
5859 return all != null ? all : Collections .emptyList ();
5960 }
6061
6162 @ Override
6263 public Iterable <byte []> getAllByte (String key ) {
6364 if (key .endsWith (Metadata .BINARY_HEADER_SUFFIX )) {
64- final Iterable <byte []> all = this .metadata .getAll (Metadata .Key .of (key , Metadata .BINARY_BYTE_MARSHALLER ));
65+ final Iterable <byte []> all =
66+ this .metadata .getAll (Metadata .Key .of (key , Metadata .BINARY_BYTE_MARSHALLER ));
6567 return all != null ? all : Collections .emptyList ();
6668 }
6769 return StreamSupport .stream (getAll (key ).spliterator (), false )
You can’t perform that action at this time.
0 commit comments