diff --git a/server/implementation/src/main/java/io/smallrye/graphql/execution/ExecutionService.java b/server/implementation/src/main/java/io/smallrye/graphql/execution/ExecutionService.java index be870f886..9cf3cb8aa 100644 --- a/server/implementation/src/main/java/io/smallrye/graphql/execution/ExecutionService.java +++ b/server/implementation/src/main/java/io/smallrye/graphql/execution/ExecutionService.java @@ -79,7 +79,7 @@ public ExecutionService(GraphQLSchema graphQLSchema, Schema schema) { } public ExecutionService(GraphQLSchema graphQLSchema, Schema schema, ExecutionStrategy queryExecutionStrategy, - ExecutionStrategy mutationExecutionStrategy) { + ExecutionStrategy mutationExecutionStrategy) { this.graphQLSchema = graphQLSchema; this.schema = schema; @@ -222,9 +222,9 @@ private static void sendError(String errorMessage, ExecutionResponseWriter write } private void writeAsync(GraphQL graphQL, - ExecutionInput executionInput, - SmallRyeContext smallRyeContext, - ExecutionResponseWriter writer) { + ExecutionInput executionInput, + SmallRyeContext smallRyeContext, + ExecutionResponseWriter writer) { Uni.createFrom().completionStage(() -> graphQL.executeAsync(executionInput)) @@ -242,9 +242,9 @@ private void writeAsync(GraphQL graphQL, } private void writeSync(GraphQL g, - ExecutionInput executionInput, - SmallRyeContext smallRyeContext, - ExecutionResponseWriter writer) { + ExecutionInput executionInput, + SmallRyeContext smallRyeContext, + ExecutionResponseWriter writer) { try { ExecutionResult executionResult = g.execute(executionInput); notifyAndWrite(smallRyeContext, executionResult, writer); @@ -254,8 +254,8 @@ private void writeSync(GraphQL g, } private void notifyAndWrite(SmallRyeContext smallRyeContext, - ExecutionResult executionResult, - ExecutionResponseWriter writer) { + ExecutionResult executionResult, + ExecutionResponseWriter writer) { smallRyeContext.setExecutionResult(executionResult); // Notify after eventEmitter.fireAfterExecute(smallRyeContext);