We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5fe3f commit 99ba5e7Copy full SHA for 99ba5e7
graphql-java-servlet/src/main/java/graphql/kickstart/servlet/HttpRequestHandlerImpl.java
@@ -62,11 +62,11 @@ private GraphQLInvocationInput parseInvocationInput(
62
HttpServletResponse response) {
63
try {
64
GraphQLInvocationInputParser invocationInputParser =
65
- GraphQLInvocationInputParser.create(
66
- request,
67
- configuration.getInvocationInputFactory(),
68
- configuration.getObjectMapper(),
69
- configuration.getContextSetting());
+ GraphQLInvocationInputParser.create(
+ request,
+ configuration.getInvocationInputFactory(),
+ configuration.getObjectMapper(),
+ configuration.getContextSetting());
70
return invocationInputParser.getGraphQLInvocationInput(request, response);
71
} catch (Exception e) {
72
throw new InvocationInputParseException(e);
0 commit comments