Skip to content

Commit b684cee

Browse files
committed
remove static method to use the current instance
1 parent af891db commit b684cee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/annotations/processor/retrievers/GraphQLObjectInfoRetriever.java

Lines changed: 1 addition & 1 deletion
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)