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

Commit 3518feda authored by Adam Powell's avatar Adam Powell
Browse files

Correct state loss tracking for FragmentTransaction.commitNow

Booleans are hard.

Bug 27419920

Change-Id: I91a746aa14cad36bf77ec6224ffc13b00dc39ae7
parent 78614f77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1525,7 +1525,7 @@ final class FragmentManagerImpl extends FragmentManager implements LayoutInflate
            throw new IllegalStateException("Must be called from main thread of fragment host");
        }

        if (allowStateLoss) {
        if (!allowStateLoss) {
            checkStateLoss();
        }