Skip to content

Commit 76b10de

Browse files
committed
Made constructor protected again instead of private (fix #99)
1 parent 50cac40 commit 76b10de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/servlet/SimpleGraphQLHttpServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class SimpleGraphQLHttpServlet extends AbstractGraphQLHttpServlet {
1313
private final GraphQLQueryInvoker queryInvoker;
1414
private final GraphQLObjectMapper graphQLObjectMapper;
1515

16-
private SimpleGraphQLHttpServlet(GraphQLInvocationInputFactory invocationInputFactory, GraphQLQueryInvoker queryInvoker, GraphQLObjectMapper graphQLObjectMapper, List<GraphQLServletListener> listeners, boolean asyncServletMode) {
16+
protected SimpleGraphQLHttpServlet(GraphQLInvocationInputFactory invocationInputFactory, GraphQLQueryInvoker queryInvoker, GraphQLObjectMapper graphQLObjectMapper, List<GraphQLServletListener> listeners, boolean asyncServletMode) {
1717
super(listeners, asyncServletMode);
1818
this.invocationInputFactory = invocationInputFactory;
1919
this.queryInvoker = queryInvoker;

0 commit comments

Comments
 (0)