diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-06-28 15:16:15 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-28 15:16:15 -0700 |
commit | 713816102b1cb61f45d2306f38e3d95dfdcc8ae1 (patch) | |
tree | 55aadcfc5fa9344269c7a7604b8c69ead1304c04 /src | |
parent | b4f706cceb4dec7d36d787b46716deaf72e4775d (diff) | |
download | milf-rs-713816102b1cb61f45d2306f38e3d95dfdcc8ae1.tar.gz milf-rs-713816102b1cb61f45d2306f38e3d95dfdcc8ae1.zip |
Remove stray println!()
Diffstat (limited to 'src')
-rw-r--r-- | src/serialization.rs | 2 |
1 files changed, 0 insertions, 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<DecodeError> 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) |