about summary refs log tree commit diff
path: root/src/libsyntax/print
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/libsyntax/print
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/libsyntax/print')
-rw-r--r--src/libsyntax/print/pp.rs1
-rw-r--r--src/libsyntax/print/pprust.rs3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/print/pp.rs b/src/libsyntax/print/pp.rs
index c588e407e30..4996c1e96a8 100644
--- a/src/libsyntax/print/pp.rs
+++ b/src/libsyntax/print/pp.rs
@@ -62,7 +62,6 @@
  */
 
 use std::io;
-use std::vec::Vec;
 
 #[deriving(Clone, Eq)]
 pub enum Breaks {
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs
index 5c23dd163d1..1b8f48861aa 100644
--- a/src/libsyntax/print/pprust.rs
+++ b/src/libsyntax/print/pprust.rs
@@ -32,7 +32,6 @@ use std::char;
 use std::str;
 use std::io;
 use std::io::{IoResult, MemWriter};
-use std::vec::Vec;
 
 // The &mut State is stored here to prevent recursive type.
 pub enum AnnNode<'a> {
@@ -2392,8 +2391,6 @@ mod test {
     use codemap;
     use parse::token;
 
-    use std::vec::Vec;
-
     #[test]
     fn test_fun_to_str() {
         let abba_ident = token::str_to_ident("abba");