about summary refs log tree commit diff
path: root/src/liblog
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-03-19 23:23:00 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-03-20 09:30:14 -0700
commitda3625161d8f8bcb2f43d703eec8d002d0bb9c87 (patch)
tree4d1a336aa48054131a90cda34ecd71ff309a3616 /src/liblog
parent7a5a8c3c0776636aef8e1d98dfed5e96573ea544 (diff)
downloadrust-da3625161d8f8bcb2f43d703eec8d002d0bb9c87.tar.gz
rust-da3625161d8f8bcb2f43d703eec8d002d0bb9c87.zip
Removing imports of std::vec_ng::Vec
It's now in the prelude.
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/directive.rs1
-rw-r--r--src/liblog/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/liblog/directive.rs b/src/liblog/directive.rs
index 9d5e1a8f9ed..50639a59eb9 100644
--- a/src/liblog/directive.rs
+++ b/src/liblog/directive.rs
@@ -9,7 +9,6 @@
 // except according to those terms.
 
 use std::cmp;
-use std::vec::Vec;
 
 #[deriving(Show, Clone)]
 pub struct LogDirective {
diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs
index fa8daf79812..45ba598a795 100644
--- a/src/liblog/lib.rs
+++ b/src/liblog/lib.rs
@@ -126,7 +126,6 @@ use std::local_data;
 use std::os;
 use std::rt;
 use std::slice;
-use std::vec::Vec;
 
 use sync::one::{Once, ONCE_INIT};