Skip to content

Commit

Permalink
Remove stray println
Browse files Browse the repository at this point in the history
  • Loading branch information
rcook committed Sep 3, 2024
1 parent bc4c5ec commit 5ee4302
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion decompress/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ impl Decompress {
let mt = res.map(|t| t.mime_type());
mt.and_then(|mt| self.decompressors.iter().find(|dec| dec.test_mimetype(mt)))
} else {
println!("f: {:?} ", archive.as_ref());
self.decompressors
.iter()
.find(|dec| dec.test(archive.as_ref()))
Expand Down

0 comments on commit 5ee4302

Please sign in to comment.