mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
clippy: Fix unneeded return statement warnings (#31776)
This commit is contained in:
parent
d63615354c
commit
15bf32a4e6
19 changed files with 31 additions and 38 deletions
|
@ -111,7 +111,7 @@ impl HTMLOutputElementMethods for HTMLOutputElement {
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/#dom-output-type
|
||||
fn Type(&self) -> DOMString {
|
||||
return DOMString::from("output");
|
||||
DOMString::from("output")
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/#dom-fe-name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue