diff --git a/lib/xml_schema_validator/src/lib.rs b/lib/xml_schema_validator/src/lib.rs index 2275867..a432809 100644 --- a/lib/xml_schema_validator/src/lib.rs +++ b/lib/xml_schema_validator/src/lib.rs @@ -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) }