X: Reenable compiler warnings

This commit is contained in:
2026-08-05 10:12:39 +02:00
parent f42ac30b3f
commit 8f2e43dc8a
+2 -3
View File
@@ -63,9 +63,8 @@ tasks.withType<JavaCompile>().configureEach {
options.compilerArgs.addAll(
listOf(
"--enable-preview",
//"-Xlint:deprecation",
//"-Xlint:unchecked",
"-Xmaxerrs", "1"
"-Xlint:deprecation",
"-Xlint:unchecked"
)
)
}