File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
graphql-java-servlet/src/test/groovy/graphql/kickstart/servlet Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,14 @@ version=13.0.0-SNAPSHOT
22group =com.graphql-java-kickstart
33PROJECT_NAME =graphql-java-servlet
44PROJECT_DESC =GraphQL Java Kickstart
5- PROJECT_GIT_REPO_URL =https://github.com/graphql-java-kickstart/graphql-spring-boot
5+ PROJECT_GIT_REPO_URL =https://github.com/graphql-java-kickstart/graphql-java-servlet
66PROJECT_LICENSE =MIT
7- PROJECT_LICENSE_URL =https://github.com/graphql-java-kickstart/spring-boot-graphql /blob/master/LICENSE.md
8- PROJECT_DEV_ID =apottere
9- PROJECT_DEV_NAME =Andrew Potter
7+ PROJECT_LICENSE_URL =https://github.com/graphql-java-kickstart/spring-java-servlet /blob/master/LICENSE.md
8+ PROJECT_DEV_ID =oliemansm
9+ PROJECT_DEV_NAME =Michiel Oliemans
1010LIB_GRAPHQL_JAVA_VER =17.3
1111LIB_JACKSON_VER =2.13.2
1212LIB_SLF4J_VER =1.7.36
1313LIB_LOMBOK_VER =1.18.22
1414SOURCE_COMPATIBILITY =1.8
1515TARGET_COMPATIBILITY =1.8
16- GRADLE_WRAPPER_VER =7.0
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import graphql.schema.idl.SchemaGenerator
1414import graphql.schema.idl.SchemaParser
1515import graphql.schema.idl.TypeRuntimeWiring
1616import graphql.schema.idl.errors.SchemaProblem
17- import org.jetbrains.annotations.NotNull
17+ import lombok.NonNull
1818
1919import java.util.concurrent.Executor
2020import java.util.concurrent.atomic.AtomicReference
@@ -105,7 +105,7 @@ class TestUtils {
105105 private static Executor executor () {
106106 new Executor () {
107107 @Override
108- void execute (@NotNull Runnable command ) {
108+ void execute (@NonNull Runnable command ) {
109109 command. run()
110110 }
111111 }
You can’t perform that action at this time.
0 commit comments