From 189e0dc4880ab58f1e1dc02332b09ec6f691212e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 28 May 2018 19:32:06 +0200 Subject: [PATCH] No bug - trivial TopLevelRuleParser construction cleanup. r=me MozReview-Commit-ID: 5CdOdQPZzyb --- servo/components/style/stylesheets/stylesheet.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/servo/components/style/stylesheets/stylesheet.rs b/servo/components/style/stylesheets/stylesheet.rs index 08c2cb05f7aa..5f10c1dd5035 100644 --- a/servo/components/style/stylesheets/stylesheet.rs +++ b/servo/components/style/stylesheets/stylesheet.rs @@ -363,13 +363,13 @@ impl Stylesheet { let rule_parser = TopLevelRuleParser { stylesheet_origin: origin, - shared_lock: shared_lock, + shared_lock, loader: stylesheet_loader, - context: context, - error_context: error_context, + context, + error_context, state: State::Start, had_hierarchy_error: false, - namespaces: namespaces, + namespaces, }; {