remove debug print

This commit is contained in:
Nikolay Kim 2017-06-16 14:24:17 -07:00
parent 61138f9889
commit c0263f7bd5
1 changed files with 0 additions and 1 deletions

View File

@ -354,7 +354,6 @@ fn parse_args(items: &Vec<syn::NestedMetaItem>) -> Vec<Argument> {
}
},
&syn::NestedMetaItem::Literal(syn::Lit::Str(ref args, _)) => {
println!("ARGS: {:?}", args);
for item in parse_arguments(args.as_ref()) {
spec.push(item);
}