From deb7360fa7838aa718b5a599460761aeb940b89e Mon Sep 17 00:00:00 2001 From: Lukas Kalbertodt Date: Fri, 3 Nov 2017 21:24:20 +0100 Subject: [PATCH] Remove import of now unused AsciiExt I also replaced a wildcard import with a specific one, while I was at it. --- src/libstd/sys/windows/path.rs | 2 -- src/libstd/sys/windows/process.rs | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/libstd/sys/windows/path.rs b/src/libstd/sys/windows/path.rs index 2b47808451bc..98d62a0c953a 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 0d1766d5aec6..631d69b05e11 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;