Skip to content

Commit d714dc0

Browse files
authored
Merge pull request #214 from nhpatt/remove_static
Remove static method to use the current instance
2 parents af891db + b684cee commit d714dc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/java/graphql/annotations/processor/retrievers/GraphQLObjectInfoRetriever.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public List<Method> getOrderedMethods(Class c) {
4242
.collect(Collectors.toList());
4343
}
4444

45-
public static Boolean isGraphQLField(AnnotatedElement element) {
45+
public Boolean isGraphQLField(AnnotatedElement element) {
4646
GraphQLField annotation = element.getAnnotation(GraphQLField.class);
4747
if (annotation == null) {
4848
return null;

0 commit comments

Comments
 (0)