aboutsummaryrefslogtreecommitdiff
path: root/bv1/codec/src/decode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bv1/codec/src/decode.rs')
-rw-r--r--bv1/codec/src/decode.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/bv1/codec/src/decode.rs b/bv1/codec/src/decode.rs
index 616b7af..aaebc6a 100644
--- a/bv1/codec/src/decode.rs
+++ b/bv1/codec/src/decode.rs
@@ -36,7 +36,6 @@ impl Decoder {
let b = if huff {
let mut buf = vec![];
read_huff(&mut input, &mut buf)?;
- eprintln!("{}", buf.len());
let mut buf = std::io::Cursor::new(&mut buf);
Block::read(&mut buf, View::all(self.size))?
} else {