Skip to content

Commit

Permalink
Remove forgotten dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Mar 10, 2024
1 parent 7d660fa commit 7f213f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl std::str::FromStr for FileId {
type Err = std::num::ParseIntError;

fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(Self(FileIdInner::from_str_radix(dbg!(s), 16)?))
Ok(Self(FileIdInner::from_str_radix(s, 16)?))
}
}

Expand Down

0 comments on commit 7f213f2

Please sign in to comment.