Skip to content

Commit

Permalink
gifed: lzw.rs remove dbg!s
Browse files Browse the repository at this point in the history
  • Loading branch information
gennyble committed Jan 14, 2024
1 parent bb91402 commit 7ff755a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions gifed/src/lzw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ impl<'a> LZW<'a> {
let clear_code = 1u16 << minimum_size;
let end_of_information_code = clear_code + 1;

dbg!(minimum_size, clear_code);

// Fill dictionary with self-descriptive values
for value in 0..clear_code {
dictionary.insert(&DEFAULT_DICT[value as usize..value as usize + 1], value);
Expand Down

0 comments on commit 7ff755a

Please sign in to comment.