diff --git a/src/png/mod.rs b/src/png/mod.rs index 33799f92..ad3718a8 100644 --- a/src/png/mod.rs +++ b/src/png/mod.rs @@ -305,7 +305,6 @@ impl PngImage { /// 4: Paeth /// 5: All (heuristically pick the best filter for each line) pub fn filter_image(&self, filter: u8) -> Vec { - //dbg!(self.data.len()); let mut filtered = Vec::with_capacity(self.data.len()); let bpp = ((self.ihdr.bit_depth.as_u8() * self.channels_per_pixel() + 7) / 8) as usize; let mut last_line: &[u8] = &[];