From c0039fb62474ffc1055318690b70008c4fd52f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= Date: Mon, 13 Jan 2025 20:50:15 +0100 Subject: [PATCH] Enable NullAway JSpecify mode See gh-34140 --- gradle/spring-module.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/spring-module.gradle b/gradle/spring-module.gradle index c97b273ccf..503a26df36 100644 --- a/gradle/spring-module.gradle +++ b/gradle/spring-module.gradle @@ -118,6 +118,7 @@ tasks.withType(JavaCompile).configureEach { disableAllChecks = true option("NullAway:OnlyNullMarked", "true") option("NullAway:CustomContractAnnotations", "org.springframework.lang.Contract") + option("NullAway:JSpecifyMode", "true") } } tasks.compileJava {