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

Commit 9d16dff0 authored by Felipe Leme's avatar Felipe Leme
Browse files

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

Bug: N/A
Test: manual verification

Change-Id: I2ab74caab460e41ed6c08882af3d504d3322a577
parent 6fa646ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6340,7 +6340,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 {