remove debug print

This commit is contained in:
Niels Geens
2025-04-10 22:10:29 +02:00
parent ba9d69b414
commit e9f5bcc519

View File

@@ -54,7 +54,6 @@ impl XmlSchemaValidator {
/// Check if the validator has reached the end of the XML
pub fn eof(&self) -> bool {
println!("EOF: {:?}", self.current_tokens);
self.current_tokens.is_empty() || self.current_tokens.iter().all(Token::is_eof)
}