Skip to content

Commit

Permalink
Remove old commented-out line
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpane committed Dec 15, 2024
1 parent ae19ad2 commit 1969d1f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion zlib-rs/src/deflate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 1969d1f

Please sign in to comment.