Skip to content

Commit 6acb984

Browse files
committed
lint
1 parent 27f4112 commit 6acb984

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

parquet/src/encryption/ciphers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
//! Encryption implementation specific to Parquet, as described
1919
//! in the [spec](https://github.com/apache/parquet-format/blob/master/Encryption.md).
2020
21-
use std::sync::Arc;
22-
use crate::errors::{ParquetError, Result};
2321
use crate::encryption::decryption::FileDecryptor;
22+
use crate::errors::{ParquetError, Result};
23+
use std::sync::Arc;
2424

2525
#[derive(PartialEq)]
2626
pub(crate) enum ModuleType {

parquet/src/encryption/decryption.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
use std::collections::HashMap;
1918
use ring::aead::{Aad, LessSafeKey, UnboundKey, AES_128_GCM};
20-
use arrow_array::Datum;
19+
use std::collections::HashMap;
2120

2221
const NONCE_LEN: usize = 12;
2322
const TAG_LEN: usize = 16;

0 commit comments

Comments
 (0)