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

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