diff options
author | 2023-08-21 21:39:20 +0000 | |
---|---|---|
committer | 2023-08-22 08:08:51 +0000 | |
commit | 605ed7e2019e36ab1c000f6041bcba753d4e7560 (patch) | |
tree | df4fd5d7e24c78d449b3bbac3f6ccacc1b9988a8 | |
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: If129d646e8911f5cc431b74490f763cb7bdb83e0
-rw-r--r-- | tests/DynamicCodeLoggerIntegrationTests/src/com/android/dcl/Simple.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/DynamicCodeLoggerIntegrationTests/src/com/android/dcl/Simple.java b/tests/DynamicCodeLoggerIntegrationTests/src/com/android/dcl/Simple.java index e995a26ea5c9..2ca91fbc1d3d 100644 --- a/tests/DynamicCodeLoggerIntegrationTests/src/com/android/dcl/Simple.java +++ b/tests/DynamicCodeLoggerIntegrationTests/src/com/android/dcl/Simple.java @@ -16,7 +16,7 @@ package com.android.dcl; -/** Dummy class which is built into a jar purely so we can pass it to DexClassLoader. */ +/** Placeholder class which is built into a jar purely so we can pass it to DexClassLoader. */ public final class Simple { public Simple() {} } |