1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-20 16:33:20 +00:00

Use 'or_insert_with'

This commit is contained in:
sharkdp
2020-06-03 10:08:41 +02:00
committed by David Peter
parent 74e8373e34
commit e57e9b6dbb
+1 -1
View File
@@ -70,7 +70,7 @@ fn get_syntax_mapping_to_paths(
match mapping {
(_, MappingTarget::MapToUnknown) => {}
(matcher, MappingTarget::MapTo(s)) => {
let globs = map.entry((*s).into()).or_insert(Vec::new());
let globs = map.entry((*s).into()).or_insert_with(Vec::new);
globs.push(matcher.glob().glob().into());
}
}