Skip to content

Commit 7f213f2

Browse files
committed
Remove forgotten dbg
1 parent 7d660fa commit 7f213f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/file_id.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ impl std::str::FromStr for FileId {
2727
type Err = std::num::ParseIntError;
2828

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

0 commit comments

Comments
 (0)