about summary refs log tree commit diff
path: root/src/libsyntax/print
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-03-26 16:38:07 -0400
committerAlex Crichton <alex@alexcrichton.com>2013-03-28 23:56:46 -0400
commitbe57d745d2517305da4625891f08af8b3eb19042 (patch)
treed0bc3e6423cffa64277b691c9f86bd43c9699beb /src/libsyntax/print
parentcc83049a56092173e1a08e2bdaf587bfa607dcf8 (diff)
downloadrust-be57d745d2517305da4625891f08af8b3eb19042.tar.gz
rust-be57d745d2517305da4625891f08af8b3eb19042.zip
Removing unused imports
Diffstat (limited to 'src/libsyntax/print')
-rw-r--r--src/libsyntax/print/pprust.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs
index 242156f2d7e..66907471c98 100644
--- a/src/libsyntax/print/pprust.rs
+++ b/src/libsyntax/print/pprust.rs
@@ -19,11 +19,11 @@ use attr;
 use codemap::{CodeMap, BytePos};
 use codemap;
 use diagnostic;
-use parse::classify::{expr_is_simple_block, expr_requires_semi_to_be_stmt};
+use parse::classify::expr_is_simple_block;
 use parse::token::ident_interner;
-use parse::{comments, lexer, token};
+use parse::{comments, token};
 use parse;
-use print::pp::{break_offset, word, Printer, space, zerobreak, hardbreak};
+use print::pp::{break_offset, word, space, zerobreak, hardbreak};
 use print::pp::{breaks, consistent, inconsistent, eof};
 use print::pp;
 use print::pprust;