From 6c04b33fc886592d2dc0adcd5ca82cdd7a843691 Mon Sep 17 00:00:00 2001 From: Ruediger zu Dohna Date: Thu, 5 Jan 2023 14:34:26 +0100 Subject: [PATCH] #1670: fix javadoc --- .../graphql/schema/creator/type/InputTypeCreator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/schema-builder/src/main/java/io/smallrye/graphql/schema/creator/type/InputTypeCreator.java b/common/schema-builder/src/main/java/io/smallrye/graphql/schema/creator/type/InputTypeCreator.java index eb3b5a2da..f99358bd1 100644 --- a/common/schema-builder/src/main/java/io/smallrye/graphql/schema/creator/type/InputTypeCreator.java +++ b/common/schema-builder/src/main/java/io/smallrye/graphql/schema/creator/type/InputTypeCreator.java @@ -29,7 +29,7 @@ /** * This creates an input type object. - *
+ * * The input object has fields that might reference other types * that should still be created. * @@ -85,7 +85,7 @@ public boolean hasUseableConstructor(ClassInfo classInfo) { /** * Returns a constructor or factory method to create instances of this class. - *
+ * * Could either be the default constructor or any constructor or static method annotated with {@code @JsonbCreator} * * @param classInfo the class whose creator is to be found