Enable warnings for rawtypes

This would have prevented the missing generics in 31394aa
This commit is contained in:
Eric Anderson 2015-06-18 12:40:08 -07:00
parent 399be9ac73
commit ec965ca1cc
1 changed files with 2 additions and 1 deletions

View File

@ -30,7 +30,8 @@ subprojects {
[compileJava, compileTestJava].each() {
it.options.compilerArgs += ["-Xlint:unchecked", "-Xlint:deprecation", "-Xlint:-options"]
it.options.compilerArgs += ["-Xlint:unchecked", "-Xlint:deprecation", "-Xlint:-options",
"-Xlint:rawtypes"]
it.options.encoding = "UTF-8"
}