Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c757204 authored by Alice Kuo's avatar Alice Kuo
Browse files

Update language to comply with Android's inclusive language guidance

See https://source.android.com/setup/contribute/respectful-code for reference

 #inclusivefixit

Bug: 162536543
Change-Id: I468147a439c1a60488def7db3e44bfc361bddbe4
parent 09b57ae9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -339,14 +339,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;
            }
+1 −1
Original line number Diff line number Diff line
@@ -559,7 +559,7 @@ public class BugreportReceiverTest {
            // Clear properties
            mContext.getSharedPreferences(PREFS_BUGREPORT, Context.MODE_PRIVATE)
                    .edit().clear().commit();
            // Sanity check...
            // Confidence check...
            assertEquals("Did not reset properties", STATE_UNKNOWN,
                    getWarningState(mContext, STATE_UNKNOWN));
        } else {