Remove unused exception

This commit is contained in:
Gary Gregory 2024-01-26 20:08:27 -05:00
parent 09dd28409e
commit 3fce6dbb00
1 changed files with 1 additions and 1 deletions

View File

@ -787,7 +787,7 @@ public class TreeList<E> extends AbstractList<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);