Skip to content

Commit

Permalink
Remove unused exception
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 27, 2024
1 parent 09dd284 commit 3fce6db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ static class TreeListIterator<E> implements ListIterator<E>, OrderedIterator<E>
* @param parent the parent list
* @param fromIndex the index to start at
*/
protected TreeListIterator(final TreeList<E> parent, final int fromIndex) throws IndexOutOfBoundsException {
protected TreeListIterator(final TreeList<E> parent, final int fromIndex) {
this.parent = parent;
this.expectedModCount = parent.modCount;
this.next = parent.root == null ? null : parent.root.get(fromIndex);
Expand Down

0 comments on commit 3fce6db

Please sign in to comment.