aboutsummaryrefslogtreecommitdiffstats
path: root/components/selectors
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2018-03-27 10:30:02 +0200
committerEmilio Cobos Álvarez <emilio@crisal.io>2018-03-27 10:30:02 +0200
commit48ad41cfb5aaee8ff78caef59267bb168bcb26c9 (patch)
treebbf7138576c6045a57e014665b97cdc7a3ef7363 /components/selectors
parent3561bcdbe6b90e625612687964bfcb58b63a87ec (diff)
downloadservo-48ad41cfb5aaee8ff78caef59267bb168bcb26c9.tar.gz
servo-48ad41cfb5aaee8ff78caef59267bb168bcb26c9.zip
Remove useless AsciiExt imports.
These warn with the next Nightly.
Diffstat (limited to 'components/selectors')
-rw-r--r--components/selectors/attr.rs1
-rw-r--r--components/selectors/parser.rs1
2 files changed, 0 insertions, 2 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;