From f5c85a816a44f31bdcf37f7a3b4dd4ed44627aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 17 Apr 2018 20:00:36 +0200 Subject: [PATCH] style: Remove an unused import. --- components/style/stylesheets/rules_iterator.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/components/style/stylesheets/rules_iterator.rs b/components/style/stylesheets/rules_iterator.rs index 81bf890b0fd3..b46e24c22c72 100644 --- a/components/style/stylesheets/rules_iterator.rs +++ b/components/style/stylesheets/rules_iterator.rs @@ -11,7 +11,6 @@ use smallvec::SmallVec; use std::slice; use stylesheets::{CssRule, DocumentRule, ImportRule, MediaRule, SupportsRule}; use stylesheets::StylesheetInDocument; -use stylesheets::import_rule::ImportSheet; /// An iterator over a list of rules. pub struct RulesIterator<'a, 'b, C>