diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-03-27 10:30:02 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-03-27 10:30:02 +0200 |
commit | 48ad41cfb5aaee8ff78caef59267bb168bcb26c9 (patch) | |
tree | bbf7138576c6045a57e014665b97cdc7a3ef7363 | |
parent | 3561bcdbe6b90e625612687964bfcb58b63a87ec (diff) | |
download | servo-48ad41cfb5aaee8ff78caef59267bb168bcb26c9.tar.gz servo-48ad41cfb5aaee8ff78caef59267bb168bcb26c9.zip |
Remove useless AsciiExt imports.
These warn with the next Nightly.
-rw-r--r-- | components/selectors/attr.rs | 1 | ||||
-rw-r--r-- | components/selectors/parser.rs | 1 | ||||
-rw-r--r-- | components/style_traits/viewport.rs | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/components/selectors/attr.rs b/components/selectors/attr.rs index 8ef4365d77b..c912f7f8b94 100644 --- a/components/selectors/attr.rs +++ b/components/selectors/attr.rs @@ -4,7 +4,6 @@ use cssparser::ToCss; use parser::SelectorImpl; -#[allow(unused_imports)] use std::ascii::AsciiExt; use std::fmt; #[derive(Clone, Eq, PartialEq)] diff --git a/components/selectors/parser.rs b/components/selectors/parser.rs index 5fd73ce8d73..601b7e23986 100644 --- a/components/selectors/parser.rs +++ b/components/selectors/parser.rs @@ -14,7 +14,6 @@ use precomputed_hash::PrecomputedHash; use servo_arc::ThinArc; use sink::Push; use smallvec::SmallVec; -#[allow(unused_imports)] use std::ascii::AsciiExt; use std::borrow::{Borrow, Cow}; use std::fmt::{self, Display, Debug, Write}; use std::iter::Rev; diff --git a/components/style_traits/viewport.rs b/components/style_traits/viewport.rs index 75dd13870e0..d961fa9e62e 100644 --- a/components/style_traits/viewport.rs +++ b/components/style_traits/viewport.rs @@ -7,7 +7,6 @@ use {CSSPixel, CssWriter, ParseError, PinchZoomFactor, ToCss}; use cssparser::Parser; use euclid::TypedSize2D; -#[allow(unused_imports)] use std::ascii::AsciiExt; use std::fmt::{self, Write}; define_css_keyword_enum! { |