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 7f7eb8446890165c202d42382f145663492dbb77 Author: Paul King <[email protected]> AuthorDate: Wed May 15 17:38:03 2019 +1000 minor refactor: revert accidental commit of some code linting flags --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 0fcd536..70835eb 100644 --- a/build.gradle +++ b/build.gradle @@ -386,7 +386,7 @@ allprojects { tasks.withType(JavaCompile) { options.encoding = 'UTF-8' options.incremental = true - options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + //options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" if (classpath) { classpath = classpath + files(dgmConverter.outputDir) @@ -407,7 +407,7 @@ allprojects { tasks.withType(GroovyCompile) { groovyOptions.fork(memoryMaximumSize: groovycMain_mx) groovyOptions.encoding = 'UTF-8' - options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + //options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" groovyClasspath = files( rootProject.compileJava.classpath, files(project==rootProject?rootProject.bootstrapJar:rootProject.jar)
