From b1bfd407efbb9b2d58ec26f5323121dce93fcefd Mon Sep 17 00:00:00 2001 From: Edward Barnard Date: Wed, 3 May 2017 13:42:42 +0100 Subject: Rustfmt --- src/builder.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/builder.rs') diff --git a/src/builder.rs b/src/builder.rs index 08467af..2398a8b 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -40,9 +40,7 @@ impl>> Builder { fn build_value(&mut self) -> Result { match self.token.take() { Some(PlistEvent::StartArray(len)) => Ok(Plist::Array(self.build_array(len)?)), - Some(PlistEvent::StartDictionary(len)) => { - Ok(Plist::Dictionary(self.build_dict(len)?)) - } + Some(PlistEvent::StartDictionary(len)) => Ok(Plist::Dictionary(self.build_dict(len)?)), Some(PlistEvent::BooleanValue(b)) => Ok(Plist::Boolean(b)), Some(PlistEvent::DataValue(d)) => Ok(Plist::Data(d)), -- cgit v1.2.3