File tree 3 files changed +3
-3
lines changed
src/main/java/graphql/annotations/processor/retrievers
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.
35
35
36
36
``` groovy
37
37
dependencies {
38
- compile "io.github.graphql-java:graphql-java-annotations:7.0"
38
+ compile "io.github.graphql-java:graphql-java-annotations:7.0.1 "
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ org.gradle.daemon=true
5
5
org.gradle.parallel =true
6
6
org.gradle.jvmargs =-Dfile.encoding =UTF-8
7
7
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) {
42
42
.collect (Collectors .toList ());
43
43
}
44
44
45
- public static Boolean isGraphQLField (AnnotatedElement element ) {
45
+ public Boolean isGraphQLField (AnnotatedElement element ) {
46
46
GraphQLField annotation = element .getAnnotation (GraphQLField .class );
47
47
if (annotation == null ) {
48
48
return null ;
You can’t perform that action at this time.
0 commit comments