Skip to content

Commit 17740e9

Browse files
committed
fmt
1 parent 76855f2 commit 17740e9

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

rust/arrow/src/compute/kernels/length.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ where
9494
.downcast_ref::<GenericStringArray<O>>()
9595
.unwrap();
9696
let bits_in_bytes = O::from_usize(8).unwrap();
97-
unary_offsets_string::<O, _>(array, T::DATA_TYPE, |x| {
98-
x * bits_in_bytes
99-
})
97+
unary_offsets_string::<O, _>(array, T::DATA_TYPE, |x| x * bits_in_bytes)
10098
}
10199

102100
/// Returns an array of Int32/Int64 denoting the number of bytes in each string in the array.

0 commit comments

Comments
 (0)