diff options
author | Orion Hodson <oth@google.com> | 2020-08-07 15:44:46 +0100 |
---|---|---|
committer | Orion Hodson <oth@google.com> | 2020-08-17 15:35:31 +0100 |
commit | 7cebdeeb53410548c2fad979b46f94d4e53c9733 (patch) | |
tree | 0d9089e91a3f9ea289c4a0473f2a91526347b156 /tools/preload-check/src | |
parent | 429b59c8a4b74ba603ea1ecf02feb016a95d0ef2 (diff) |
profman: inclusive language updates
Based on:
https://source.android.com/setup/contribute/respectful-code
Bug: 161336379
Bug: 161896447
Test: m
Change-Id: Iaf7db2f76d8979f1ccc06c7e9e705b69c1f8069d
Diffstat (limited to 'tools/preload-check/src')
-rw-r--r-- | tools/preload-check/src/com/android/preload/check/PreloadCheck.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/preload-check/src/com/android/preload/check/PreloadCheck.java b/tools/preload-check/src/com/android/preload/check/PreloadCheck.java index 00fd414e3ee2..3d851531d7e7 100644 --- a/tools/preload-check/src/com/android/preload/check/PreloadCheck.java +++ b/tools/preload-check/src/com/android/preload/check/PreloadCheck.java @@ -69,13 +69,13 @@ public class PreloadCheck implements IDeviceTest { } /** - * Test the classes mentioned in the embedded preloaded-classes blacklist. + * Test the classes mentioned in the embedded preloaded-classes denylist. */ @Test - public void testBlackList() throws Exception { + public void testDenyList() throws Exception { StringBuilder sb = new StringBuilder(); try (BufferedReader br = new BufferedReader(new InputStreamReader(getClass() - .getResourceAsStream("/preloaded-classes-blacklist")))) { + .getResourceAsStream("/preloaded-classes-denylist")))) { String s; while ((s = br.readLine()) != null) { s = s.trim(); |