diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2020-09-28 14:11:49 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-09-28 14:11:49 +0000 |
commit | 986e49df72e615fb6a04af591452c90f264b9aeb (patch) | |
tree | f172dfe20e4d7093884af69aed2343b1b0dcf8db /packages/Shell/src | |
parent | 3ed624fb2ef5655b7f3260c69c882741ccd0757b (diff) | |
parent | 5c75720453bd275c0580adfe0d1df02d52b3dbe9 (diff) |
Merge "Update language to comply with Android's inclusive language guidance"
Diffstat (limited to 'packages/Shell/src')
-rw-r--r-- | packages/Shell/src/com/android/shell/BugreportProgressService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/Shell/src/com/android/shell/BugreportProgressService.java b/packages/Shell/src/com/android/shell/BugreportProgressService.java index f6c2ee264cb5..02815a571db8 100644 --- a/packages/Shell/src/com/android/shell/BugreportProgressService.java +++ b/packages/Shell/src/com/android/shell/BugreportProgressService.java @@ -503,14 +503,14 @@ public class BugreportProgressService extends Service { } if (msg.what != MSG_SERVICE_COMMAND) { - // Sanity check. + // Confidence check. Log.e(TAG, "Invalid message type: " + msg.what); return; } // At this point it's handling onStartCommand(), with the intent passed as an Extra. if (!(msg.obj instanceof Intent)) { - // Sanity check. + // Confidence check. Log.wtf(TAG, "handleMessage(): invalid msg.obj type: " + msg.obj); return; } |