commit | a880c2d8ee4fa2ef9e90b094aacd3b7a6445c7fb | [log] [tgz] |
---|---|---|
author | Edgar Wang <edgarwang@google.com> | Thu Aug 06 16:01:34 2020 +0000 |
committer | Edgar Wang <edgarwang@google.com> | Thu Aug 06 16:01:42 2020 +0000 |
tree | b35b9f715c89020e8f585c40c05313a43d7cc83d | |
parent | 8e0e0b3fa908c3e0eea3ef7eb7883edc63eba4a3 [diff] |
Update language to comply with Android's inclusive language guidance See https://source.android.com/setup/contribute/respectful-code for reference Bug: 161896447 Change-Id: I375a97f6421e3d6fa936c857d840201a39cf68a9 Test: robotest & manual
diff --git a/src/com/android/settings/intelligence/search/query/CursorToSearchResultConverter.java b/src/com/android/settings/intelligence/search/query/CursorToSearchResultConverter.java index a57f510..d6d865a 100644 --- a/src/com/android/settings/intelligence/search/query/CursorToSearchResultConverter.java +++ b/src/com/android/settings/intelligence/search/query/CursorToSearchResultConverter.java
@@ -61,7 +61,7 @@ private final int LONG_TITLE_LENGTH = 20; - private static final String[] whiteList = { + private static final String[] allowList = { "main_toggle_wifi", "main_toggle_bluetooth", "main_toggle_bluetooth_obsolete", @@ -73,7 +73,7 @@ "data_usage_enable", "button_roaming_key", }; - private static final Set<String> prioritySettings = new HashSet(Arrays.asList(whiteList)); + private static final Set<String> prioritySettings = new HashSet(Arrays.asList(allowList)); public CursorToSearchResultConverter(Context context) {