Skip to content

Commit 3ce3e4d

Browse files
committed
let's keep printfs for test edgecases out of the upstream code, shall we?
1 parent 62fb791 commit 3ce3e4d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/engine/avx2/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,9 +488,6 @@ impl super::Engine for AVX2Encoder {
488488
// happen is test code that knowingly provides both invalid data and an undersized
489489
// buffer assuming linear decoding that breaks off as soon as it hits this invalid
490490
// data.
491-
if output.len()-output_index < 32 {
492-
println!("IL {} OL {}", input.len(), output.len());
493-
}
494491
let output_chunk = &mut output[output_index..(output_index + 32)];
495492

496493

0 commit comments

Comments
 (0)