mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
Clean imports in hashglobe
This commit is contained in:
parent
34e0805b12
commit
02fe616b86
4 changed files with 18 additions and 21 deletions
|
@ -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};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue