Skip to content

Commit 978ed47

Browse files
authored
Merge pull request #216 from Enigmatis/development
release 7.0.1
2 parents e0c48a4 + 18cf896 commit 978ed47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ syntax for GraphQL schema definition.
3535

3636
```groovy
3737
dependencies {
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

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ org.gradle.daemon=true
55
org.gradle.parallel=true
66
org.gradle.jvmargs=-Dfile.encoding=UTF-8
77

8-
version = 7.0
8+
version = 7.0.1

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)