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

@ -11,14 +11,14 @@
use self::Entry::*;
use self::VacantEntryState::*;
use borrow::Borrow;
use cmp::max;
use fmt::{self, Debug};
use std::borrow::Borrow;
use std::cmp::max;
use std::fmt::{self, Debug};
#[allow(deprecated)]
use hash::{Hash, BuildHasher};
use iter::FromIterator;
use mem::{self, replace};
use ops::{Deref, Index};
use std::hash::{Hash, BuildHasher};
use std::iter::FromIterator;
use std::mem::{self, replace};
use std::ops::{Deref, Index};
use super::table::{self, Bucket, EmptyBucket, FullBucket, FullBucketMut, RawTable, SafeHash};
use super::table::BucketState::{Empty, Full};