@@ -121,7 +121,7 @@ static Object fromTypedProto(Value proto) {
121121 return decodeValue (type , proto .getListValue ().getValues (1 ));
122122 }
123123
124- private static Object decodeValue (Type fieldType , com . google . protobuf . Value proto ) {
124+ private static Object decodeValue (Type fieldType , Value proto ) {
125125 if (proto .getKindCase () == Value .KindCase .NULL_VALUE ) {
126126 return null ;
127127 }
@@ -263,7 +263,7 @@ private static void checkType(Type fieldType, Value proto, Value.KindCase expect
263263 }
264264 }
265265
266- private static double valueProtoToFloat64 (com . google . protobuf . Value proto ) {
266+ private static double valueProtoToFloat64 (Value proto ) {
267267 if (proto .getKindCase () == Value .KindCase .STRING_VALUE ) {
268268 switch (proto .getStringValue ()) {
269269 case "-Infinity" :
@@ -296,7 +296,7 @@ private static NullPointerException throwNotNull(int columnIndex) {
296296 "Cannot call array getter for column " + columnIndex + " with null elements" );
297297 }
298298
299- boolean consumeRow (Iterator <com . google . protobuf . Value > iterator ) {
299+ boolean consumeRow (Iterator <Value > iterator ) {
300300 rowData .clear ();
301301 if (!iterator .hasNext ()) {
302302 return false ;
@@ -307,7 +307,7 @@ boolean consumeRow(Iterator<com.google.protobuf.Value> iterator) {
307307 ErrorCode .INTERNAL ,
308308 "Invalid value stream: end of stream reached before row is complete" );
309309 }
310- com . google . protobuf . Value value = iterator .next ();
310+ Value value = iterator .next ();
311311 rowData .add (decodeValue (fieldType .getType (), value ));
312312 }
313313 return true ;
@@ -469,7 +469,7 @@ private abstract static class PrimitiveArray<T, A> extends AbstractList<T> {
469469
470470 abstract A newArray (int size );
471471
472- abstract void setProto (A array , int i , com . google . protobuf . Value protoValue );
472+ abstract void setProto (A array , int i , Value protoValue );
473473
474474 abstract T get (A array , int i );
475475
@@ -511,7 +511,7 @@ long[] newArray(int size) {
511511 }
512512
513513 @ Override
514- void setProto (long [] array , int i , com . google . protobuf . Value protoValue ) {
514+ void setProto (long [] array , int i , Value protoValue ) {
515515 array [i ] = Long .parseLong (protoValue .getStringValue ());
516516 }
517517
@@ -536,7 +536,7 @@ private static class Float64Array extends PrimitiveArray<Double, double[]> {
536536 }
537537
538538 @ Override
539- void setProto (double [] array , int i , com . google . protobuf . Value protoValue ) {
539+ void setProto (double [] array , int i , Value protoValue ) {
540540 array [i ] = valueProtoToFloat64 (protoValue );
541541 }
542542
0 commit comments