From 81d5cb6aac3825741d2a09964fa497b0ab9ebd3b Mon Sep 17 00:00:00 2001 From: dondonz <13839920+dondonz@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:02:46 +1100 Subject: [PATCH] Fix typo (backport PR #3544) --- .../normalized/ExecutableNormalizedOperationFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/graphql/normalized/ExecutableNormalizedOperationFactory.java b/src/main/java/graphql/normalized/ExecutableNormalizedOperationFactory.java index cc14728b1..554902387 100644 --- a/src/main/java/graphql/normalized/ExecutableNormalizedOperationFactory.java +++ b/src/main/java/graphql/normalized/ExecutableNormalizedOperationFactory.java @@ -134,7 +134,7 @@ public Options maxChildrenDepth(int maxChildrenDepth) { * @return new options object to use */ public Options maxFieldsCount(int maxFieldsCount) { - return new Options(this.graphQLContext, this.locale, maxChildrenDepth, maxFieldsCount); + return new Options(this.graphQLContext, this.locale, this.maxChildrenDepth, maxFieldsCount); } /**