mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +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
|
@ -59,9 +59,7 @@ impl MediaMetadata {
|
|||
}
|
||||
|
||||
fn queue_update_metadata_algorithm(&self) {
|
||||
if self.session.get().is_none() {
|
||||
return;
|
||||
}
|
||||
if self.session.get().is_none() {}
|
||||
}
|
||||
|
||||
pub fn set_session(&self, session: &MediaSession) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue