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

Commit 6cb8b250 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-team Robot
Browse files

Fixed AutofillManager.isAutofillUiShowing()

It was using & instead of &&

Test: not really
Bug: 75652829
Bug: 74527545

Change-Id: Ib8ca79ba6ec35d2fc97f042db2152b03d334ce30
(cherry picked from commit cb2e83da)
parent f26f11b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1413,7 +1413,7 @@ public final class AutofillManager {
     */
    public boolean isAutofillUiShowing() {
        final AutofillClient client = mContext.getAutofillClient();
        return client != null & client.autofillClientIsFillUiShowing();
        return client != null && client.autofillClientIsFillUiShowing();
    }

    /** @hide */