Skip to content

Commit 71a5553

Browse files
committed
clippy
1 parent 745f067 commit 71a5553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/bambam-omf/src/collection/record/geometry_wkb_codec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ where
2929
data.map(|v| {
3030
let bytes = match &v {
3131
BytesOrString::Bytes(b) => b.clone(),
32-
BytesOrString::String(s) => hex::decode(&s).map_err(|e| {
32+
BytesOrString::String(s) => hex::decode(s).map_err(|e| {
3333
serde::de::Error::custom(format!("failure converting hex wkb string to bytes: {e}"))
3434
})?,
3535
};

0 commit comments

Comments
 (0)