summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Kalbertodt <lukas.kalbertodt@gmail.com>2017-11-03 21:24:20 +0100
committerLukas Kalbertodt <lukas.kalbertodt@gmail.com>2017-11-04 19:16:03 +0100
commitdeb7360fa7838aa718b5a599460761aeb940b89e (patch)
treed4e1db145b3c17535b4cc79dec48c72c2ebfd96a
parent259c125267fb8334ae7f70f4e1d1c2e0d9a56d59 (diff)
downloadrust-deb7360fa7838aa718b5a599460761aeb940b89e.tar.gz
Remove import of now unused AsciiExt
I also replaced a wildcard import with a specific one, while I was at it.
-rw-r--r--src/libstd/sys/windows/path.rs2
-rw-r--r--src/libstd/sys/windows/process.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/sys/windows/path.rs b/src/libstd/sys/windows/path.rs
index 2b47808451b..98d62a0c953 100644
--- a/src/libstd/sys/windows/path.rs
+++ b/src/libstd/sys/windows/path.rs
@@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-use ascii::*;
-
use path::Prefix;
use ffi::OsStr;
use mem;
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs
index 0d1766d5aec..631d69b05e1 100644
--- a/src/libstd/sys/windows/process.rs
+++ b/src/libstd/sys/windows/process.rs
@@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
-use ascii::*;
+use ascii::AsciiExt;
use collections::HashMap;
use collections;
use env::split_paths;