Remove unused exception
This commit is contained in:
parent
09dd28409e
commit
3fce6dbb00
|
@ -787,7 +787,7 @@ public class TreeList<E> extends AbstractList<E> {
|
||||||
* @param parent the parent list
|
* @param parent the parent list
|
||||||
* @param fromIndex the index to start at
|
* @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.parent = parent;
|
||||||
this.expectedModCount = parent.modCount;
|
this.expectedModCount = parent.modCount;
|
||||||
this.next = parent.root == null ? null : parent.root.get(fromIndex);
|
this.next = parent.root == null ? null : parent.root.get(fromIndex);
|
||||||
|
|
Loading…
Reference in New Issue