This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 2cf3178 Fix clippy (#900)
2cf3178 is described below
commit 2cf3178d63084a8fb3f6f2f34954c1c7855af23b
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Nov 1 10:43:32 2021 -0400
Fix clippy (#900)
---
parquet/src/util/hash_util.rs | 1 -
1 file changed, 1 deletion(-)
diff --git a/parquet/src/util/hash_util.rs b/parquet/src/util/hash_util.rs
index 10bb37f..f3705bc 100644
--- a/parquet/src/util/hash_util.rs
+++ b/parquet/src/util/hash_util.rs
@@ -49,7 +49,6 @@ const MURMUR_R: i32 = 47;
/// Rust implementation of MurmurHash2, 64-bit version for 64-bit platforms
fn murmur_hash2_64a(data_bytes: &[u8], seed: u64) -> u64 {
- use std::convert::TryInto;
let len = data_bytes.len();
let len_64 = (len / 8) * 8;