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

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

Merge "Perform onDestroy when FragmentController is torn down."

parents 123e9213 851179db
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1233,9 +1233,9 @@ final class FragmentManagerImpl extends FragmentManager implements LayoutInflate
        int nextState = mCurState;
        if (f.mRemoving) {
            if (f.isInBackStack()) {
                nextState = Fragment.CREATED;
                nextState = Math.min(nextState, Fragment.CREATED);
            } else {
                nextState = Fragment.INITIALIZING;
                nextState = Math.min(nextState, Fragment.INITIALIZING);
            }
        }