From 58d8aa382c5652351793d3d52063665dba03ac38 Mon Sep 17 00:00:00 2001 From: Jan Martiska Date: Mon, 8 Apr 2024 08:29:54 +0200 Subject: [PATCH] Reformat --- .../smallrye/graphql/client/model/helper/TypeModel.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/client/model-builder/src/main/java/io/smallrye/graphql/client/model/helper/TypeModel.java b/client/model-builder/src/main/java/io/smallrye/graphql/client/model/helper/TypeModel.java index ec770316a..93bdd0c80 100644 --- a/client/model-builder/src/main/java/io/smallrye/graphql/client/model/helper/TypeModel.java +++ b/client/model-builder/src/main/java/io/smallrye/graphql/client/model/helper/TypeModel.java @@ -10,9 +10,6 @@ import static io.smallrye.graphql.client.model.ScanningContext.getIndex; import static java.util.stream.Collectors.toList; -import io.smallrye.graphql.client.model.Annotations; -import io.smallrye.graphql.client.model.Classes; -import io.smallrye.graphql.client.model.Scalars; import java.lang.reflect.Modifier; import java.security.AccessController; import java.security.PrivilegedAction; @@ -20,6 +17,7 @@ import java.util.Optional; import java.util.stream.Collectors; import java.util.stream.Stream; + import org.jboss.jandex.AnnotationInstance; import org.jboss.jandex.AnnotationTarget; import org.jboss.jandex.ClassInfo; @@ -28,6 +26,10 @@ import org.jboss.jandex.MethodInfo; import org.jboss.jandex.Type; +import io.smallrye.graphql.client.model.Annotations; +import io.smallrye.graphql.client.model.Classes; +import io.smallrye.graphql.client.model.Scalars; + /** * Represents a model for handling GraphQL types, including information about the underlying Jandex Type. *