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

Commit 1b24054f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixed Activity.dump() to lazy load AutofillManager if needed."

parents 98e31505 9d16dff0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6338,7 +6338,7 @@ public class Activity extends ContextThemeWrapper

        mHandler.getLooper().dump(new PrintWriterPrinter(writer), prefix);

        final AutofillManager afm = mAutofillManager;
        final AutofillManager afm = getAutofillManager();
        if (afm != null) {
            afm.dump(prefix, writer);
        } else {