From e9f5bcc51911ec8560b8e1a0f8eb079bb2d68ed5 Mon Sep 17 00:00:00 2001 From: Niels Geens Date: Thu, 10 Apr 2025 22:10:29 +0200 Subject: [PATCH] remove debug print --- lib/xml_schema_validator/src/lib.rs | 1 - 1 file changed, 1 deletion(-) 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) }