about summary refs log tree commit diff
path: root/src/comp/syntax/util
diff options
context:
space:
mode:
authorHaitao Li <lihaitao@gmail.com>2011-11-11 00:41:42 +0800
committerBrian Anderson <banderson@mozilla.com>2011-11-10 19:19:40 -0800
commit5a7249c935d52e79db2301a6cccfd28dff9bf38e (patch)
tree843bb8cadfecccf970a3af56ea87259cc83de4a1 /src/comp/syntax/util
parent9bc2f1800dcf97aff968478569c52204ec6d3998 (diff)
downloadrust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.tar.gz
rust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.zip
Cleanup unused imports
Diffstat (limited to 'src/comp/syntax/util')
-rw-r--r--src/comp/syntax/util/interner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/util/interner.rs b/src/comp/syntax/util/interner.rs
index dea86723af3..c814f168a4a 100644
--- a/src/comp/syntax/util/interner.rs
+++ b/src/comp/syntax/util/interner.rs
@@ -1,7 +1,7 @@
 // An "interner" is a data structure that associates values with uint tags and
 // allows bidirectional lookup; i.e. given a value, one can easily find the
 // type, and vice versa.
-import std::{vec, map, option};
+import std::{vec, map};
 import std::map::{hashmap, hashfn, eqfn};
 import std::option::{none, some};