Skip to content

Commit 0c53c64

Browse files
committed
Fix constructor issue
1 parent 0ee7dda commit 0c53c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql-java-kickstart/src/main/java/graphql/kickstart/execution/GraphQLInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class GraphQLInvoker {
1919

2020
private final GraphQLBuilder graphQLBuilder;
2121
private final BatchedDataLoaderGraphQLBuilder batchedDataLoaderGraphQLBuilder;
22-
private final GraphQLInvokerProxy proxy = GraphQL::executeAsync;
22+
private GraphQLInvokerProxy proxy = GraphQL::executeAsync;
2323

2424
public CompletableFuture<ExecutionResult> executeAsync(GraphQLSingleInvocationInput invocationInput) {
2525
GraphQL graphQL = graphQLBuilder.build(invocationInput.getSchema());

0 commit comments

Comments
 (0)