summary refs log tree commit diff
path: root/src/libsyntax/parse/comments.rs
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/parse/comments.rs
parentcc83049a56092173e1a08e2bdaf587bfa607dcf8 (diff)
downloadrust-be57d745d2517305da4625891f08af8b3eb19042.tar.gz
rust-be57d745d2517305da4625891f08af8b3eb19042.zip
Removing unused imports
Diffstat (limited to 'src/libsyntax/parse/comments.rs')
-rw-r--r--src/libsyntax/parse/comments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/comments.rs b/src/libsyntax/parse/comments.rs
index e5685cdb4c7..0804951327a 100644
--- a/src/libsyntax/parse/comments.rs
+++ b/src/libsyntax/parse/comments.rs
@@ -11,7 +11,7 @@
 use core::prelude::*;
 
 use ast;
-use codemap::{BytePos, CharPos, CodeMap, FileMap, Pos};
+use codemap::{BytePos, CharPos, CodeMap, Pos};
 use diagnostic;
 use parse::lexer::{is_whitespace, get_str_from, reader};
 use parse::lexer::{StringReader, bump, is_eof, nextch, TokenAndSpan};