From 713816102b1cb61f45d2306f38e3d95dfdcc8ae1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 28 Jun 2014 15:16:15 -0700 Subject: Remove stray println!() --- src/serialization.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/serialization.rs b/src/serialization.rs index b3b3682..9b5ddfd 100644 --- a/src/serialization.rs +++ b/src/serialization.rs @@ -619,9 +619,7 @@ impl serialize::Decoder for Decoder { let ret = try!(f(self, len)); match self.toml { Some(Array(ref mut arr)) => { - println!("before: {}", arr); arr.retain(|slot| slot.as_integer() != Some(0)); - println!("after: {}", arr); if arr.len() != 0 { return Ok(ret) } } _ => return Ok(ret) -- cgit v1.2.3