remove needless return statements

This commit is contained in:
daniel.eades 2023-11-16 17:26:18 +00:00 committed by Ashley Wulber
parent 2141230229
commit 94f9879a39
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ async fn start_listening(
}
None => {
_ = output.send(WaylandUpdate::Finished).await;
return State::Finished;
State::Finished
}
}
}