Add missing Javadeoc tags.

This commit is contained in:
Gary Gregory 2022-03-06 17:19:13 -05:00
parent 99bb546524
commit 7fe2f39a10
1 changed files with 6 additions and 0 deletions

View File

@ -54,6 +54,12 @@ public final class UnmodifiableListIterator<E> implements ListIterator<E>, Unmod
} }
/** /**
* Decorates the specified iterator such that it cannot be modified.
*
* @param <E> the element type
* @param iterator the iterator to decorate
* @return a new unmodifiable list iterator
* @throws NullPointerException if the iterator is null
* @deprecated method name has typo in it. Use {@link org.apache.commons.collections4.iterators.UnmodifiableListIterator#unmodifiableListIterator(ListIterator)} instead. * @deprecated method name has typo in it. Use {@link org.apache.commons.collections4.iterators.UnmodifiableListIterator#unmodifiableListIterator(ListIterator)} instead.
*/ */
@Deprecated @Deprecated