mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-12-22 05:35:20 +00:00
Remove unnecessary return satements
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
9256b21d4a
commit
133f2046b3
@ -85,21 +85,21 @@ impl Console {
|
||||
if let Some(msg) = msg? {
|
||||
log::debug!("Ignoring {:?}", msg);
|
||||
}
|
||||
return Ok(());
|
||||
Ok(())
|
||||
},
|
||||
msg = self.keyboard.next_signal().fuse() => {
|
||||
if let Some(msg) = msg? {
|
||||
log::debug!("Ignoring {:?}", msg);
|
||||
}
|
||||
return Ok(());
|
||||
Ok(())
|
||||
},
|
||||
msg = self.mouse.next_signal().fuse() => {
|
||||
if let Some(msg) = msg? {
|
||||
log::debug!("Ignoring {:?}", msg);
|
||||
}
|
||||
return Ok(());
|
||||
Ok(())
|
||||
}
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
pub async fn label(&self) -> Result<String> {
|
||||
|
Loading…
Reference in New Issue
Block a user