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

Commit bb1d4d38 authored by Romain Guy's avatar Romain Guy Committed by Android Git Automerger
Browse files

am d6c1870d: am 5fceada3: Merge "Fragement, or Fragment: that is the question"

* commit 'd6c1870d':
  Fragement, or Fragment: that is the question
parents 917f88f0 d6c1870d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -574,12 +574,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;