Fixed some clippy warnings by replacing 'match' with 'if' (#32007)

This commit is contained in:
komuhangi 2024-04-07 10:39:05 +03:00 committed by GitHub
parent 05f1bbf0a9
commit e0e3408650
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 57 additions and 71 deletions

View file

@ -2767,15 +2767,12 @@ impl FetchResponseListener for HTMLMediaElementFetchListener {
// restart the download later from where we left, we cancel // restart the download later from where we left, we cancel
// the current request. Otherwise, we continue the request // the current request. Otherwise, we continue the request
// assuming that we may drop some frames. // assuming that we may drop some frames.
match e { if e == PlayerError::EnoughData {
PlayerError::EnoughData => {
if let Some(ref mut current_fetch_context) = if let Some(ref mut current_fetch_context) =
*elem.current_fetch_context.borrow_mut() *elem.current_fetch_context.borrow_mut()
{ {
current_fetch_context.cancel(CancelReason::Backoff); current_fetch_context.cancel(CancelReason::Backoff);
} }
},
_ => (),
} }
warn!("Could not push input data to player {:?}", e); warn!("Could not push input data to player {:?}", e);
return; return;

View file

@ -87,8 +87,7 @@ impl VirtualMethods for HTMLOptGroupElement {
fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) { fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) {
self.super_type().unwrap().attribute_mutated(attr, mutation); self.super_type().unwrap().attribute_mutated(attr, mutation);
match attr.local_name() { if attr.local_name() == &local_name!("disabled") {
&local_name!("disabled") => {
let disabled_state = match mutation { let disabled_state = match mutation {
AttributeMutation::Set(None) => true, AttributeMutation::Set(None) => true,
AttributeMutation::Set(Some(_)) => { AttributeMutation::Set(Some(_)) => {
@ -117,8 +116,6 @@ impl VirtualMethods for HTMLOptGroupElement {
el.check_disabled_attribute(); el.check_disabled_attribute();
} }
} }
},
_ => {},
} }
} }

View file

@ -158,11 +158,8 @@ impl VirtualMethods for HTMLOutputElement {
fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) { fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) {
self.super_type().unwrap().attribute_mutated(attr, mutation); self.super_type().unwrap().attribute_mutated(attr, mutation);
match attr.local_name() { if attr.local_name() == &local_name!("form") {
&local_name!("form") => {
self.form_attribute_mutated(mutation); self.form_attribute_mutated(mutation);
},
_ => {},
} }
} }
} }

View file

@ -657,8 +657,9 @@ impl HTMLScriptElement {
if script_type == ScriptType::Classic { if script_type == ScriptType::Classic {
let for_attribute = element.get_attribute(&ns!(), &local_name!("for")); let for_attribute = element.get_attribute(&ns!(), &local_name!("for"));
let event_attribute = element.get_attribute(&ns!(), &local_name!("event")); let event_attribute = element.get_attribute(&ns!(), &local_name!("event"));
match (for_attribute, event_attribute) { if let (Some(ref for_attribute), Some(ref event_attribute)) =
(Some(ref for_attribute), Some(ref event_attribute)) => { (for_attribute, event_attribute)
{
let for_value = for_attribute.value().to_ascii_lowercase(); let for_value = for_attribute.value().to_ascii_lowercase();
let for_value = for_value.trim_matches(HTML_SPACE_CHARACTERS); let for_value = for_value.trim_matches(HTML_SPACE_CHARACTERS);
if for_value != "window" { if for_value != "window" {
@ -670,8 +671,6 @@ impl HTMLScriptElement {
if event_value != "onload" && event_value != "onload()" { if event_value != "onload" && event_value != "onload()" {
return; return;
} }
},
(_, _) => (),
} }
} }
@ -1239,15 +1238,12 @@ impl VirtualMethods for HTMLScriptElement {
fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) { fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) {
self.super_type().unwrap().attribute_mutated(attr, mutation); self.super_type().unwrap().attribute_mutated(attr, mutation);
match *attr.local_name() { if *attr.local_name() == local_name!("src") {
local_name!("src") => {
if let AttributeMutation::Set(_) = mutation { if let AttributeMutation::Set(_) = mutation {
if !self.parser_inserted.get() && self.upcast::<Node>().is_connected() { if !self.parser_inserted.get() && self.upcast::<Node>().is_connected() {
self.prepare(); self.prepare();
} }
} }
},
_ => {},
} }
} }

View file

@ -288,10 +288,9 @@ impl FetchResponseListener for FetchContext {
fn submit_resource_timing(&mut self) { fn submit_resource_timing(&mut self) {
// navigation submission is handled in servoparser/mod.rs // navigation submission is handled in servoparser/mod.rs
match self.resource_timing.timing_type { if self.resource_timing.timing_type == ResourceTimingType::Resource {
ResourceTimingType::Resource => network_listener::submit_timing(self), network_listener::submit_timing(self)
_ => {}, }
};
} }
} }