From 1969d1f99c50c26d5fca22e5cc901ca66fe8c48b Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Sun, 15 Dec 2024 08:06:13 -0800 Subject: [PATCH] Remove old commented-out line --- zlib-rs/src/deflate.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/zlib-rs/src/deflate.rs b/zlib-rs/src/deflate.rs index 1d3e3f7..53d973b 100644 --- a/zlib-rs/src/deflate.rs +++ b/zlib-rs/src/deflate.rs @@ -1501,7 +1501,6 @@ impl<'a> State<'a> { unreachable!("out of bound access on the symbol buffer"); }; - //match u16::from_le_bytes([dist_low, dist_high]) as usize { match u16::from_le_bytes([dist_low, dist_high]) as usize { 0 => self.bit_writer.emit_lit(ltree, lc) as usize, dist => self.bit_writer.emit_dist_static(dtree, lc, dist),