Skip to content

Commit

Permalink
SimpleGraphQLServlet: protected constructor with Builder (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtechhabarta authored and apottere committed Dec 13, 2017
1 parent 56b02be commit 184025b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/graphql/servlet/SimpleGraphQLServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public SimpleGraphQLServlet(GraphQLSchemaProvider schemaProvider, ExecutionStrat
}
}

private SimpleGraphQLServlet(Builder builder) {
protected SimpleGraphQLServlet(Builder builder) {
super(builder.objectMapperConfigurer, builder.listeners, null);

this.schemaProvider = builder.schemaProvider;
Expand Down

0 comments on commit 184025b

Please sign in to comment.