Skip to content

Commit 49bcffe

Browse files
authored
Use respectful terms (#1251)
Change-Id: I065b57f665898ca434059abc12aa7a24a6911499
1 parent 3ff015b commit 49bcffe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ allprojects {
3232
}
3333
}
3434

35-
def isBlackListed = { candidate ->
36-
def blacklist = [
35+
def isBlocked = { candidate ->
36+
def blocklist = [
3737
'androidx.browser:browser',
3838
'com.facebook.android',
3939
'com.google.guava',
4040
'com.github.bumptech.glide'
4141
]
42-
return blacklist.any { word ->
42+
return blocklist.any { word ->
4343
return candidate.toString().contains(word)
4444
}
4545
}
4646

4747
dependencyUpdates {
4848
rejectVersionIf {
49-
isNonStable(it.candidate) || isBlackListed(it.candidate)
49+
isNonStable(it.candidate) || isBlocked(it.candidate)
5050
}
5151
}
5252
}

0 commit comments

Comments
 (0)