Clean imports in hashglobe

This commit is contained in:
Manish Goregaokar 2017-09-05 13:56:15 -07:00
parent 34e0805b12
commit 02fe616b86
4 changed files with 18 additions and 21 deletions

View file

@ -8,11 +8,11 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use borrow::Borrow;
use fmt;
use hash::{Hash, BuildHasher};
use iter::{Chain, FromIterator};
use ops::{BitOr, BitAnd, BitXor, Sub};
use std::borrow::Borrow;
use std::fmt;
use std::hash::{Hash, BuildHasher};
use std::iter::{Chain, FromIterator};
use std::ops::{BitOr, BitAnd, BitXor, Sub};
use super::Recover;
use super::hash_map::{self, HashMap, Keys, RandomState};