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

Commit b12c1b74 authored by Chan Kim's avatar Chan Kim
Browse files

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: I900f7e9ad19d3c264a032f1263ac30b4e6362633
parent e1ee1aab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -473,7 +473,7 @@ public abstract class Context {
    public static final int BIND_IMPORTANT_BACKGROUND = 0x00800000;

    /**
     * @hide Flag for {@link #bindService}: allows application hosting service to manage whitelists
     * @hide Flag for {@link #bindService}: allows application hosting service to manage allowlists
     * such as temporary allowing a {@code PendingIntent} to bypass Power Save mode.
     */
    public static final int BIND_ALLOW_WHITELIST_MANAGEMENT = 0x01000000;
+2 −2
Original line number Diff line number Diff line
@@ -392,9 +392,9 @@ public class IntentSender implements Parcelable {
    }

    /** @hide */
    public IntentSender(IIntentSender target, IBinder whitelistToken) {
    public IntentSender(IIntentSender target, IBinder allowlistToken) {
        mTarget = target;
        mWhitelistToken = whitelistToken;
        mWhitelistToken = allowlistToken;
    }

    /** @hide */