mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 03:11:24 +00:00
Remove unnecessary returns
This commit is contained in:
parent
ef60ed9581
commit
4433257f2b
1 changed files with 2 additions and 2 deletions
|
@ -56,10 +56,10 @@ where
|
|||
|
||||
tokio::select! {
|
||||
_ = self.make_progress() => {
|
||||
return f.await;
|
||||
f.await
|
||||
}
|
||||
output = &mut f => {
|
||||
return output;
|
||||
output
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue