Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/graphql/cachecontrol/CacheControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public enum Scope {
PUBLIC, PRIVATE
}

private class Hint {
private static final class Hint {
private final List<Object> path;
private final Integer maxAge;
private final Scope scope;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/graphql/schema/GraphQLTypeResolvingVisitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public TraversalControl visitBackRef(TraverserContext<GraphQLSchemaElement> cont
return CONTINUE;
}

private class TypeRefResolvingVisitor extends GraphQLTypeVisitorStub {
protected final GraphQLType resolvedType;
private static final class TypeRefResolvingVisitor extends GraphQLTypeVisitorStub {
private final GraphQLType resolvedType;

TypeRefResolvingVisitor(GraphQLType resolvedType) {
this.resolvedType = resolvedType;
Expand Down