Skip to content

Commit 20b1071

Browse files
committed
cleanup
1 parent d5eb160 commit 20b1071

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/graphql/normalized/ExecutableNormalizedOperationFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
import static graphql.util.FpKit.filterSet;
6565
import static graphql.util.FpKit.groupingBy;
6666
import static graphql.util.FpKit.intersection;
67-
import static java.util.Collections.max;
6867
import static java.util.Collections.singleton;
6968
import static java.util.Collections.singletonList;
7069
import static java.util.stream.Collectors.toCollection;
@@ -153,7 +152,7 @@ public Options maxChildrenDepth(int maxChildrenDepth) {
153152
* @return new options object to use
154153
*/
155154
public Options maxFieldsCount(int maxFieldsCount) {
156-
return new Options(this.graphQLContext, this.locale, maxChildrenDepth, maxFieldsCount, this.deferSupport);
155+
return new Options(this.graphQLContext, this.locale, this.maxChildrenDepth, maxFieldsCount, this.deferSupport);
157156
}
158157

159158
/**

0 commit comments

Comments
 (0)