From d39850628294a378d73d0ea1d7087f91ffaac232 Mon Sep 17 00:00:00 2001 From: Sunli Date: Thu, 3 Sep 2020 20:23:35 +0800 Subject: [PATCH] Remove debug code. --- Cargo.toml | 2 +- async-graphql-derive/Cargo.toml | 2 +- async-graphql-derive/src/input_object.rs | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f40c83ff..1b452494 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/async-graphql-derive/Cargo.toml b/async-graphql-derive/Cargo.toml index bbf92733..ed3cd6be 100644 --- a/async-graphql-derive/Cargo.toml +++ b/async-graphql-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-graphql-derive" -version = "1.17.19" +version = "1.17.20" authors = ["sunli "] edition = "2018" description = "Macros for async-graphql" diff --git a/async-graphql-derive/src/input_object.rs b/async-graphql-derive/src/input_object.rs index 6561c49b..f99da6fc 100644 --- a/async-graphql-derive/src/input_object.rs +++ b/async-graphql-derive/src/input_object.rs @@ -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()) }