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

Commit 5fceada3 authored by Romain Guy's avatar Romain Guy Committed by Gerrit Code Review
Browse files

Merge "Fragement, or Fragment: that is the question"

parents ebd397ad 2de5082f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -569,12 +569,12 @@ final class FragmentManagerImpl extends FragmentManager {
            return null;
        }
        if (index >= mActive.size()) {
            throwException(new IllegalStateException("Fragement no longer exists for key "
            throwException(new IllegalStateException("Fragment no longer exists for key "
                    + key + ": index " + index));
        }
        Fragment f = mActive.get(index);
        if (f == null) {
            throwException(new IllegalStateException("Fragement no longer exists for key "
            throwException(new IllegalStateException("Fragment no longer exists for key "
                    + key + ": index " + index));
        }
        return f;