Skip to content

Commit

Permalink
chore: remove unused error variant
Browse files Browse the repository at this point in the history
  • Loading branch information
dxrcy committed Dec 20, 2024
1 parent 66524cf commit 7290300
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/debugger/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ pub enum ValueError {
MalformedValue {},
MalformedInteger {},
MalformedLabel {},
MalformedPCOffset {},
IntegerTooLarge {},
}

Expand Down Expand Up @@ -133,9 +132,6 @@ impl fmt::Display for CommandError {
ValueError::MalformedLabel {} => {
write!(f, "Malformed label")?;
}
ValueError::MalformedPCOffset {} => {
write!(f, "Malformed program counter offset")?;
}
ValueError::IntegerTooLarge {} => {
write!(f, "Integer too large")?;
}
Expand Down

0 comments on commit 7290300

Please sign in to comment.