use 'let/else' syntax (clippy::manual_let_else)

This commit is contained in:
Daniel Eades 2024-04-15 20:47:12 +01:00 committed by Jeremy Soller
parent 76d166b266
commit 34cf7bf76a
2 changed files with 4 additions and 6 deletions

View file

@ -789,9 +789,8 @@ impl App {
if !self.config.profiles.is_empty() {
let mut profiles_section = widget::settings::view_section("");
for (profile_name, profile_id) in self.config.profile_names() {
let profile = match self.config.profiles.get(&profile_id) {
Some(some) => some,
None => continue,
let Some(profile) = self.config.profiles.get(&profile_id) else {
continue;
};
let expanded = self.profile_expanded == Some(profile_id);

View file

@ -437,9 +437,8 @@ impl Terminal {
}
}
let search_regex = match &mut self.search_regex_opt {
Some(some) => some,
None => return,
let Some(search_regex) = &mut self.search_regex_opt else {
return;
};
// Determine search origin