From 2789e9887666a05695778bd9d822616985b40dbc Mon Sep 17 00:00:00 2001 From: Oluwatobi Sofela <60105594+oluwatobiss@users.noreply.github.com> Date: Thu, 21 Mar 2024 00:05:29 +0100 Subject: clippy: Fix redundant field names warnings (#31793) --- components/script/stylesheet_loader.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/script/stylesheet_loader.rs') diff --git a/components/script/stylesheet_loader.rs b/components/script/stylesheet_loader.rs index 8ba0760840f..79ccae3019b 100644 --- a/components/script/stylesheet_loader.rs +++ b/components/script/stylesheet_loader.rs @@ -277,7 +277,7 @@ impl<'a> StylesheetLoader<'a> { .map(HTMLLinkElement::get_request_generation_id); let context = ::std::sync::Arc::new(Mutex::new(StylesheetContext { elem: Trusted::new(self.elem), - source: source, + source, url: url.clone(), metadata: None, data: vec![], @@ -381,7 +381,7 @@ impl<'a> StyleStylesheetLoader for StylesheetLoader<'a> { context.url_data.clone(), context.quirks_mode, ), - media: media, + media, shared_lock: lock.clone(), disabled: AtomicBool::new(false), }); -- cgit v1.2.3