From dff7550038fd133a92f0df5e2de850c6b220edba Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 11 Oct 2023 19:09:51 -0400 Subject: [PATCH] Remove prints. --- src/compare/compare_field.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/compare/compare_field.rs b/src/compare/compare_field.rs index 797f1ef2..edf86b28 100644 --- a/src/compare/compare_field.rs +++ b/src/compare/compare_field.rs @@ -493,7 +493,6 @@ pub(crate) fn compare_property_list_of_list_of_list_of_ast_nodes< return Ok(ComparePropertiesResult::SelfChange(this_status, message)); } for (e, r) in middle_value.zip(rust_optional) { - eprintln!("Comparing optval! {:?} {:?}", e, r); child_status.push(compare_ast_node(source, e, r.into())?); } } @@ -512,7 +511,6 @@ pub(crate) fn compare_property_list_of_list_of_list_of_ast_nodes< return Ok(ComparePropertiesResult::SelfChange(this_status, message)); } for (e, r) in mandatory_value.iter().zip(rust_value) { - eprintln!("Comparing mandatory! {:?} {:?}", e, r); child_status.push(compare_ast_node(source, e, r.into())?); } }