Remove debugging cruft

This commit is contained in:
Dirkjan Ochtman 2022-09-01 09:26:45 +02:00
parent c553b22310
commit 737fcf2595
2 changed files with 0 additions and 2 deletions

View File

@ -165,7 +165,6 @@ impl Deserializer {
}
}
XmlRecord::Close(tag) => {
println!("Close: {}", tag);
if tag == &#name {
break;
}

View File

@ -140,7 +140,6 @@ pub fn to_xml(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
where
W: std::fmt::Write,
{
println!("ident: {}", #root_name);
let _ = serializer.consume_field_context();
let mut field_context = instant_xml::FieldContext {
name: #root_name,