8000 Fix typo · graphql-java/graphql-java@81b41b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 81b41b0

Browse files
committed
Fix typo
1 parent fc5d4e5 commit 81b41b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/execution/ExecutionStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ private CompletableFuture<FetchedValue> fetchField(GraphQLFieldDefinition fieldD
251251
if ((maxNodes = executionContext.getGraphQLContext().get(MAX_RESULT_NODES)) != null) {
252252
if (resultNodesCount > maxNodes) {
253253
executionContext.getResultNodesInfo().maxResultNodesExceeded();
254-
return CompletableFuture.completedFuture(new FetchedValue(null, Collections.emptyList(), null, null));
254+
return CompletableFuture.completedFuture(new FetchedValue(null, null, ImmutableKit.emptyList(), null));
255255
}
256256
}
257257

0 commit comments

Comments
 (0)
0