Apply clippy suggestions for Rust 1.82

This commit is contained in:
Dirkjan Ochtman 2024-10-22 21:50:41 +02:00
parent 960c44af2f
commit 0f641fdc1a
1 changed files with 5 additions and 4 deletions

View File

@ -349,10 +349,11 @@ impl<'xml> Iterator for Context<'xml> {
Ok(Token::Cdata { text, .. }) => {
return Some(Ok(Node::Text(Cow::Borrowed(text.as_str()))));
}
Ok(Token::Declaration { .. }) => match self.stack.is_empty() {
false => return Some(Err(Error::UnexpectedToken(format!("{token:?}")))),
true => {}
},
Ok(Token::Declaration { .. }) => {
if !self.stack.is_empty() {
return Some(Err(Error::UnexpectedToken(format!("{token:?}"))));
}
}
Ok(Token::Comment { .. }) => continue,
Ok(token) => return Some(Err(Error::UnexpectedToken(format!("{token:?}")))),
Err(e) => return Some(Err(Error::Parse(e))),