Remove debug code.

This commit is contained in:
Sunli 2020-09-03 20:23:35 +08:00
parent 6d14a4a64f
commit d398506282
3 changed files with 2 additions and 5 deletions

View File

@ -18,7 +18,7 @@ default = ["bson", "url", "chrono-tz"]
[dependencies]
async-graphql-parser = { path = "async-graphql-parser", version = "1.17.3" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.17.19" }
async-graphql-derive = { path = "async-graphql-derive", version = "1.17.20" }
anyhow = "1.0.26"
thiserror = "1.0.11"
async-trait = "0.1.30"

View File

@ -1,6 +1,6 @@
[package]
name = "async-graphql-derive"
version = "1.17.19"
version = "1.17.20"
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
description = "Macros for async-graphql"

View File

@ -166,8 +166,5 @@ pub fn generate(object_args: &args::InputObject, input: &DeriveInput) -> Result<
impl #crate_name::InputObjectType for #ident {}
};
if gql_typename == "MyInputObject11" {
println!("{}", expanded);
}
Ok(expanded.into())
}