about summary refs log tree commit diff
path: root/src/libstd/old_path
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-03-11 11:42:57 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-03-16 21:57:42 -0500
commita079d5e4d23dca9dfb68cb3a75a6d6a9babe2f84 (patch)
tree91b1af183725d7aa47b3851918238da80dc572ab /src/libstd/old_path
parent6453fcd4ccaa84cf8a21b5991bae23a5923df98b (diff)
downloadrust-a079d5e4d23dca9dfb68cb3a75a6d6a9babe2f84.tar.gz
rust-a079d5e4d23dca9dfb68cb3a75a6d6a9babe2f84.zip
remove imports
Diffstat (limited to 'src/libstd/old_path')
-rw-r--r--src/libstd/old_path/posix.rs2
-rw-r--r--src/libstd/old_path/windows.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/old_path/posix.rs b/src/libstd/old_path/posix.rs
index 9ac7512c00b..e35623d7b1a 100644
--- a/src/libstd/old_path/posix.rs
+++ b/src/libstd/old_path/posix.rs
@@ -453,7 +453,7 @@ mod tests {
     use iter::IteratorExt;
     use option::Option::{self, Some, None};
     use old_path::GenericPath;
-    use slice::{AsSlice, SliceExt};
+    use slice::AsSlice;
     use str::{self, Str};
     use string::ToString;
     use vec::Vec;
diff --git a/src/libstd/old_path/windows.rs b/src/libstd/old_path/windows.rs
index b74bee1242d..ff4f083333b 100644
--- a/src/libstd/old_path/windows.rs
+++ b/src/libstd/old_path/windows.rs
@@ -1133,7 +1133,7 @@ mod tests {
     use iter::IteratorExt;
     use option::Option::{self, Some, None};
     use old_path::GenericPath;
-    use slice::{AsSlice, SliceExt};
+    use slice::AsSlice;
     use str::Str;
     use string::ToString;
     use vec::Vec;