Skip to content

Commit

Permalink
Remove accidentally left dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
thatbakamono committed Nov 3, 2022
1 parent ee92d6f commit 58c2a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ impl Decode for Bsp {
let mut reader: PositionTracker<Box<dyn Read>> = {
let mut reader = PeekableReader::new(reader);

let magic_number = dbg!(reader.peek::<2>()?);
let magic_number = reader.peek::<2>()?;

if magic_number == GZIP_MAGIC_NUMBER {
PositionTracker::new(Box::new(GzDecoder::new(reader)))
Expand Down

0 comments on commit 58c2a50

Please sign in to comment.