Skip to content

Commit d7cdd53

Browse files
committed
fix: replace jetbrains not null with lombok
1 parent ec12f50 commit d7cdd53

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

gradle.properties

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ version=13.0.0-SNAPSHOT
22
group=com.graphql-java-kickstart
33
PROJECT_NAME=graphql-java-servlet
44
PROJECT_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
66
PROJECT_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
1010
LIB_GRAPHQL_JAVA_VER=17.3
1111
LIB_JACKSON_VER=2.13.2
1212
LIB_SLF4J_VER=1.7.36
1313
LIB_LOMBOK_VER=1.18.22
1414
SOURCE_COMPATIBILITY=1.8
1515
TARGET_COMPATIBILITY=1.8
16-
GRADLE_WRAPPER_VER=7.0

graphql-java-servlet/src/test/groovy/graphql/kickstart/servlet/TestUtils.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import graphql.schema.idl.SchemaGenerator
1414
import graphql.schema.idl.SchemaParser
1515
import graphql.schema.idl.TypeRuntimeWiring
1616
import graphql.schema.idl.errors.SchemaProblem
17-
import org.jetbrains.annotations.NotNull
17+
import lombok.NonNull
1818

1919
import java.util.concurrent.Executor
2020
import 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
}

0 commit comments

Comments
 (0)