From 146029bc06187afb4811c5dde2b87fdfa0c8525f Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 8 Jan 2014 13:49:35 +0000 Subject: [PATCH] Remove unused PerOriginRules struct. --- src/components/style/selector_matching.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/components/style/selector_matching.rs b/src/components/style/selector_matching.rs index 4cfabfba0b1..fae04dd14f5 100644 --- a/src/components/style/selector_matching.rs +++ b/src/components/style/selector_matching.rs @@ -379,21 +379,6 @@ impl Stylist { } } -struct PerOriginRules { - normal: ~[Rule], - important: ~[Rule], -} - -impl PerOriginRules { - #[inline] - fn new() -> PerOriginRules { - PerOriginRules { - normal: ~[], - important: ~[], - } - } -} - struct PerOriginSelectorMap { normal: SelectorMap, important: SelectorMap,