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

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

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

* commit '5fceada3':
  Fragement, or Fragment: that is the question
parents 82e5d875 5fceada3
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;