diff options
author | 2023-08-21 21:39:44 +0000 | |
---|---|---|
committer | 2023-08-21 21:39:44 +0000 | |
commit | 10e239149934094403c708e82b8abad4bf145801 (patch) | |
tree | 0d82807ce05fd5e7dc809fcbf9e4505b9da80b8f | |
parent | a2d740da81964480f384a4925fe7ddcf3782a498 (diff) |
Update language to comply with Android's inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for reference
For this round, the fixes are only applied to the following to minimize breaking dependencies:
* comments (excluding javaDoc annotations)
* private constants
* private functions
* parameters within functions
BYPASS_INCLUSIVE_LANGUAGE_REASON=Just updating a few select inclusive language violations.
No-Typo-Check: Changes focused on inclusive language violations.
BUG: 295342157
Change-Id: I82d47d7abe48e9ca5652dff588d5cd1b754f2eea
-rw-r--r-- | tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/SoundTriggerTestService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/SoundTriggerTestService.java b/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/SoundTriggerTestService.java index 6d4ffcff7d45..f9e920518688 100644 --- a/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/SoundTriggerTestService.java +++ b/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/SoundTriggerTestService.java @@ -469,7 +469,7 @@ public class SoundTriggerTestService extends Service { } } - // Create a few dummy models if we didn't load anything. + // Create a few placeholder models if we didn't load anything. if (!loadedModel) { Properties dummyModelProperties = new Properties(); for (String name : new String[]{"1", "2", "3"}) { |