Skip to content

Commit ac7e06c

Browse files
committed
fix(clippy): remove explicit auto-deref in settings.rs
1 parent 047a8e4 commit ac7e06c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ui/settings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ where
11851185
let label = row_box.first_child().and_downcast::<Label>().unwrap();
11861186

11871187
let name = if let Ok(map) = display_names_c.try_borrow() {
1188-
let map: &HashMap<String, String> = &*map;
1188+
let map: &HashMap<String, String> = &map;
11891189
map.get(pack_id.as_str())
11901190
.cloned()
11911191
.unwrap_or_else(|| pack_id.to_string())

0 commit comments

Comments
 (0)