Skip to content

Commit

Permalink
removed debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ImaMapleTree committed May 28, 2024
1 parent 2f28839 commit d5a25f5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,11 @@ fn create_ctor_struct_impl(
}


let ts = TokenStream::from(quote! {
TokenStream::from(quote! {
impl #impl_generics #ident #ty_generics #where_clause {
#(#methods)*
}
});
println!("Output: {}", ts);
ts
})
}

fn try_parse_type_attributes(attributes: &[Attribute]) -> Result<CtorTypeConfiguration, Error> {
Expand Down

0 comments on commit d5a25f5

Please sign in to comment.