File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/java/graphql/annotations/processor/retrievers Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ syntax for GraphQL schema definition.
3535
3636``` groovy
3737dependencies {
38- compile "io.github.graphql-java:graphql-java-annotations:7.0"
38+ compile "io.github.graphql-java:graphql-java-annotations:7.0.1 "
3939}
4040```
4141
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ org.gradle.daemon=true
55org.gradle.parallel =true
66org.gradle.jvmargs =-Dfile.encoding =UTF-8
77
8- version = 7.0
8+ version = 7.0.1
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments