about summary refs log tree commit diff
path: root/src/libcore/send_map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/send_map.rs')
-rw-r--r--src/libcore/send_map.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs
index 4cd3502bd62..b6f237e14fb 100644
--- a/src/libcore/send_map.rs
+++ b/src/libcore/send_map.rs
@@ -20,7 +20,6 @@ Sendable hash maps.  Very much a work in progress.
 
 use cmp::Eq;
 use hash::Hash;
-use prelude::*;
 use to_bytes::IterBytes;
 
 pub trait SendMap<K:Eq Hash, V: Copy> {
@@ -46,14 +45,9 @@ pub trait SendMap<K:Eq Hash, V: Copy> {
 
 /// Open addressing with linear probing.
 pub mod linear {
-    use cmp::Eq;
     use cmp;
-    use hash::Hash;
-    use kinds::Copy;
-    use option::{None, Option, Some};
     use option;
     use rand;
-    use to_bytes::IterBytes;
     use uint;
     use vec;
 
@@ -464,7 +458,6 @@ pub mod linear {
 
 #[test]
 pub mod test {
-    use option::{None, Some};
     use send_map::linear::LinearMap;
     use send_map::linear;
     use uint;