about summary refs log tree commit diff
path: root/src/libcore/str
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-04-12 22:58:55 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2016-04-12 22:58:55 +0900
commit01fb27f64814dbd2fef755af4fd6197b1fe74240 (patch)
tree57c5c1aaeb0ab5da32fc1fc9474592c89d95af25 /src/libcore/str
parentc0221c8897db309a79990367476177b1230bb264 (diff)
Remove unused trait imports
Diffstat (limited to 'src/libcore/str')
-rw-r--r--src/libcore/str/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/str/mod.rs b/src/libcore/str/mod.rs
index f1be10da872..e5c5fe6e05c 100644
--- a/src/libcore/str/mod.rs
+++ b/src/libcore/str/mod.rs
@@ -19,7 +19,6 @@ use self::pattern::{Searcher, ReverseSearcher, DoubleEndedSearcher};
 
 use char::{self, CharExt};
 use clone::Clone;
-use cmp::Eq;
 use convert::AsRef;
 use default::Default;
 use fmt;
@@ -1320,7 +1319,6 @@ Section: Trait implementations
 
 mod traits {
     use cmp::{Ord, Ordering, PartialEq, PartialOrd, Eq};
-    use iter::Iterator;
     use option::Option;
     use option::Option::Some;
     use ops;