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

Commit 8a6a15e0 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Clean up IntentCompatUtils a bit"

parents ff80ee20 db7d4da3
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -21,16 +21,15 @@ import android.content.Intent;
public final class IntentCompatUtils {
    // Note that Intent.ACTION_USER_INITIALIZE have been introduced in API level 17
    // (Build.VERSION_CODE.JELLY_BEAN_MR1).
    public static final String ACTION_USER_INITIALIZE =
            (String)CompatUtils.getFieldValue(null, null,
    private static final String ACTION_USER_INITIALIZE =
            (String)CompatUtils.getFieldValue(null /* receiver */, null /* defaultValue */,
                    CompatUtils.getField(Intent.class, "ACTION_USER_INITIALIZE"));

    private IntentCompatUtils() {
        // This utility class is not publicly instantiable.
    }

    public static boolean has_ACTION_USER_INITIALIZE(final Intent intent) {
        return ACTION_USER_INITIALIZE != null && intent != null
                && ACTION_USER_INITIALIZE.equals(intent.getAction());
    public static boolean is_ACTION_USER_INITIALIZE(final String action) {
        return ACTION_USER_INITIALIZE != null && ACTION_USER_INITIALIZE.equals(action);
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public final class LauncherIconVisibilityManager extends BroadcastReceiver {
        } else if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
            Log.i(TAG, "Boot has been completed");
            return true;
        } else if (IntentCompatUtils.has_ACTION_USER_INITIALIZE(intent)) {
        } else if (IntentCompatUtils.is_ACTION_USER_INITIALIZE(action)) {
            Log.i(TAG, "User initialize");
            return true;
        }