refactor(error_report): remove dead code

This commit is contained in:
Khaïs COLIN 2025-05-10 10:41:30 +02:00
parent 620259af48
commit faedfadeab
Signed by: logistic-bot
SSH key fingerprint: SHA256:3zI3/tx0ZpCLHCLPmEaGR4oeYCPMCzQxXhXutBmtOAU
5 changed files with 7 additions and 70 deletions

View file

@ -14,18 +14,3 @@ impl MetaCommand {
}
}
}
#[derive(Debug)]
pub enum MetaCommandParseError {
Unrecognized { cmd: String },
}
impl std::fmt::Display for MetaCommandParseError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
MetaCommandParseError::Unrecognized { cmd } => {
write!(f, "unrecognized meta-command {cmd:?}")
}
}
}
}