summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-07-30 16:50:37 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-07-30 16:50:37 +0200
commit00ed90b908b3fca4cce7c4c2385b5a51df32bef9 (patch)
tree882f3208165a673a97db8903c9a8d589612a8052
parent91dafd157021bc280750d4d5f2c20a8427687f2b (diff)
fixup! Remove cloning
-rw-r--r--src/file/format/dhall.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/file/format/dhall.rs b/src/file/format/dhall.rs
index c088d5e..99da12c 100644
--- a/src/file/format/dhall.rs
+++ b/src/file/format/dhall.rs
@@ -25,9 +25,7 @@ fn from_dhall_value(uri: Option<&String>, value: serde_dhall::SimpleValue) -> Va
serde_dhall::NumKind::Integer(i) => Value::new(uri, ValueKind::Integer(i)),
serde_dhall::NumKind::Double(d) => Value::new(uri, ValueKind::Float(f64::from(d))),
},
- serde_dhall::SimpleValue::Text(string) => {
- Value::new(uri, ValueKind::String(string))
- }
+ serde_dhall::SimpleValue::Text(string) => Value::new(uri, ValueKind::String(string)),
serde_dhall::SimpleValue::List(list) => Value::new(
uri,
ValueKind::Array(list.into_iter().map(|v| from_dhall_value(uri, v)).collect()),