Skip to content

Commit

Permalink
remove a stray dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Jan 11, 2024
1 parent 98f0b8e commit 9f09bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assembly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ impl Serialize for Instr {

impl<'de> Deserialize<'de> for Instr {
fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
dbg!(InstrRep::deserialize(deserializer).map(Self::from))
InstrRep::deserialize(deserializer).map(Self::from)
}
}

Expand Down

0 comments on commit 9f09bd9

Please sign in to comment.