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

Commit 6275c619 authored by Daniel Kim's avatar Daniel Kim Committed by Android (Google) Code Review
Browse files

Merge "Change to null safe comparison" into main

parents 6f76201e 320b2e2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3443,7 +3443,7 @@ public final class AutofillManager {
            return false;
        }
        for (String hint : hints) {
            if (hint.equals(View.AUTOFILL_HINT_CREDENTIAL_MANAGER)) {
            if (Objects.equals(hint, View.AUTOFILL_HINT_CREDENTIAL_MANAGER)) {
                return true;
            }
        }