diff options
| author | Lukas Kalbertodt <lukas.kalbertodt@gmail.com> | 2017-11-03 21:24:20 +0100 |
|---|---|---|
| committer | Lukas Kalbertodt <lukas.kalbertodt@gmail.com> | 2017-11-04 19:16:03 +0100 |
| commit | deb7360fa7838aa718b5a599460761aeb940b89e (patch) | |
| tree | d4e1db145b3c17535b4cc79dec48c72c2ebfd96a /src/libstd/sys | |
| parent | 259c125267fb8334ae7f70f4e1d1c2e0d9a56d59 (diff) | |
| download | rust-deb7360fa7838aa718b5a599460761aeb940b89e.tar.gz rust-deb7360fa7838aa718b5a599460761aeb940b89e.zip | |
Remove import of now unused AsciiExt
I also replaced a wildcard import with a specific one, while I was at it.
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/windows/path.rs | 2 | ||||
| -rw-r--r-- | src/libstd/sys/windows/process.rs | 2 |
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; |
