We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f102bf3 commit 1ea8c7dCopy full SHA for 1ea8c7d
build.gradle
@@ -65,7 +65,7 @@ subprojects {
65
66
tasks.withType(JavaCompile) {
67
'all -processing -rawtypes -serial'.split().each {
68
- options.compilerArgs << ("-Xlint:${it}" as String)
+ options.compilerArgs << "-Xlint:${it}".toString()
69
}
70
71
options.compilerArgs << '-Werror'
@@ -342,7 +342,7 @@ def getGitTag() {
342
return tag.name
343
344
345
- def getAnnotatedTags() {
+def getAnnotatedTags() {
346
def tags = []
347
for (tag in grgit.tag.list()) {
348
if (tag.commit == grgit.head()
0 commit comments