Remove ::{self}

Summary: Cleanup after reformat one import per line.

Reviewed By: zertosh

Differential Revision: D38169581

fbshipit-source-id: 1e82053b25e4426a983fe7416481611d91e4b484
This commit is contained in:
Stiopa Koltsov
2022-07-26 14:35:15 -07:00
committed by Facebook GitHub Bot
parent f72406b06c
commit c915b03159
2 changed files with 2 additions and 2 deletions

View File

@@ -21,10 +21,10 @@ use rayon::prelude::ParallelIterator;
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::ffi; use std::ffi;
use std::fs::File; use std::fs::File;
use std::io;
use std::io::BufReader; use std::io::BufReader;
use std::io::BufWriter; use std::io::BufWriter;
use std::io::Write; use std::io::Write;
use std::io::{self};
use std::path; use std::path;
use types::HashSum; use types::HashSum;
use types::PackMode; use types::PackMode;

View File

@@ -5,8 +5,8 @@
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
*/ */
use std::fmt;
use std::fmt::Display; use std::fmt::Display;
use std::fmt::{self};
use std::str; use std::str;
#[derive(Eq, PartialEq, Debug, PartialOrd, Ord, Clone, serde::Deserialize)] #[derive(Eq, PartialEq, Debug, PartialOrd, Ord, Clone, serde::Deserialize)]