summaryrefslogtreecommitdiff
path: root/serde_dhall
diff options
context:
space:
mode:
authorNadrieril2019-08-16 18:14:55 +0200
committerNadrieril2019-08-16 18:14:55 +0200
commit5f0d69671b44ba1dff6becb9ebc7f6e74241e3e2 (patch)
tree043c93ec1acf36d034d4706eaf32f47873ba45b7 /serde_dhall
parent51bb1d2da8e5874129d4b5cc5d0c60e23eee9f11 (diff)
Remove dead code
Diffstat (limited to 'serde_dhall')
-rw-r--r--serde_dhall/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs
index 71674a9..f400206 100644
--- a/serde_dhall/src/lib.rs
+++ b/serde_dhall/src/lib.rs
@@ -168,7 +168,8 @@ pub mod value {
}
pub(crate) fn make_optional_type(t: Value) -> Self {
Self::from_dhall_value(
- DhallValue::from_builtin(Builtin::Optional).app_thunk(t.to_thunk()),
+ DhallValue::from_builtin(Builtin::Optional)
+ .app_thunk(t.to_thunk()),
)
}
pub(crate) fn make_list_type(t: Value) -> Self {