Skip to content

Commit d80129b

Browse files
committed
gradle: use += when possible
Signed-off-by: Jason A. Donenfeld <[email protected]>
1 parent 6907663 commit d80129b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tunnel/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ android {
5555
}
5656
}
5757
lint {
58-
disable.add("LongLogTag")
59-
disable.add("NewApi")
58+
disable += "LongLogTag"
59+
disable += "NewApi"
6060
}
6161
publishing {
6262
singleVariant("release") {

ui/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ android {
5454
}
5555
}
5656
lint {
57-
disable.add("LongLogTag")
58-
warning.add("MissingTranslation")
59-
warning.add("ImpliedQuantity")
57+
disable += "LongLogTag"
58+
warning += "MissingTranslation"
59+
warning += "ImpliedQuantity"
6060
}
6161
}
6262

0 commit comments

Comments
 (0)