remove unused ParserError code

This commit is contained in:
collin 2021-01-26 14:29:33 -05:00 committed by gluaxspeed
parent 9d2c5587c9
commit 8c60774b29

View File

@ -59,9 +59,3 @@ impl From<Error<Rule>> for ParserError {
ParserError::SyntaxError(SyntaxError::from(error))
}
}
impl From<std::io::Error> for ParserError {
fn from(error: std::io::Error) -> Self {
ParserError::Crate("std::io", error.to_string())
}
}