1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

End statements with semicolon (clippy::semicolon_if_nothing_returned)

This commit is contained in:
Emil Ernerfeldt
2021-10-20 16:43:40 +02:00
parent ab3be8aca3
commit d97a369c44
35 changed files with 71 additions and 72 deletions

View File

@@ -50,7 +50,7 @@ impl epi::App for WrapApp {
) {
#[cfg(feature = "persistence")]
if let Some(storage) = _storage {
*self = epi::get_value(storage, epi::APP_KEY).unwrap_or_default()
*self = epi::get_value(storage, epi::APP_KEY).unwrap_or_default();
}
}