about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-30 12:00:02 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-30 12:00:02 +0200
commitffab1b405c4008d935e05f2f3eebd3b97bdb0863 (patch)
treee5ab4566545871075c5705f17bfa32229be7f345 /src/libstd/path.rs
parentc459e897bdf3b3323aa1ad4bb6e174a5bbc402b0 (diff)
downloadrust-ffab1b405c4008d935e05f2f3eebd3b97bdb0863.tar.gz
rust-ffab1b405c4008d935e05f2f3eebd3b97bdb0863.zip
path: remove a line of code that is not useful
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 8eb5d1f2726..01588a681b8 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -351,7 +351,6 @@ impl<'a> Prefix<'a> {
 /// ```
 #[stable(feature = "rust1", since = "1.0.0")]
 pub fn is_separator(c: char) -> bool {
-    use ascii::*;
     c.is_ascii() && is_sep_byte(c as u8)
 }