1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-02-21 20:38:44 +00:00

Remove .unwrap() in insert call to prevent crashes

This commit is contained in:
sharkdp 2020-10-01 20:25:55 +02:00 committed by David Peter
parent a46191b8bf
commit 2258fb2713

View File

@ -114,7 +114,7 @@ impl<'a> SyntaxMapping<'a> {
.to_string_lossy(), .to_string_lossy(),
MappingTarget::MapTo("Git Config"), MappingTarget::MapTo("Git Config"),
) )
.unwrap(); .ok();
mapping mapping
.insert( .insert(
@ -124,7 +124,7 @@ impl<'a> SyntaxMapping<'a> {
.to_string_lossy(), .to_string_lossy(),
MappingTarget::MapTo("Git Ignore"), MappingTarget::MapTo("Git Ignore"),
) )
.unwrap(); .ok();
mapping mapping
.insert( .insert(
@ -134,7 +134,7 @@ impl<'a> SyntaxMapping<'a> {
.to_string_lossy(), .to_string_lossy(),
MappingTarget::MapTo("Git Attributes"), MappingTarget::MapTo("Git Attributes"),
) )
.unwrap(); .ok();
} }
mapping mapping