You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/04/14 09:11:59 UTC

[groovy] 01/02: commented out options for checking warnings

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 362469ff27ac66d7e4de3ced1878d0c25712cd04
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Apr 14 13:55:25 2022 +1000

    commented out options for checking warnings
---
 buildSrc/src/main/groovy/org.apache.groovy-internal.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/buildSrc/src/main/groovy/org.apache.groovy-internal.gradle b/buildSrc/src/main/groovy/org.apache.groovy-internal.gradle
index 21fcf9b82f..f538b42bb7 100644
--- a/buildSrc/src/main/groovy/org.apache.groovy-internal.gradle
+++ b/buildSrc/src/main/groovy/org.apache.groovy-internal.gradle
@@ -71,6 +71,9 @@ dependencies {
 
 tasks.withType(AbstractCompile).configureEach {
     options.encoding = 'UTF-8'
+//    options.compilerArgs << '-Xlint:unchecked'
+//    options.compilerArgs << '-Xlint:deprecation'
+//    options.compilerArgs << '-Xlint:-options'
 }
 
 tasks.withType(GroovyCompile).configureEach {