From a65b02f65a0431b380807cf049d3a54683e6ad91 Mon Sep 17 00:00:00 2001 From: reshane Date: Wed, 5 Feb 2025 10:09:51 -0500 Subject: [PATCH] Remove println --- src/decoder.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/decoder.rs b/src/decoder.rs index ffbbd82..740ebb7 100644 --- a/src/decoder.rs +++ b/src/decoder.rs @@ -85,7 +85,6 @@ impl Decoder { // if the continuation bit is set, shift & read the next byte as well loop { self.reader.read_exact(width_buf)?; - println!("{:x}", width_buf[0]); self.width = (self.width << 7) | (width_buf[0] & DATA_MASK) as u32; if width_buf[0] & CONTINUATION_MASK != CONTINUATION_MASK { break;