array can no longer be null, and the setter is history

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1494282 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-06-18 20:09:15 +00:00
parent 0cba84e103
commit 3361a74940
1 changed files with 1 additions and 3 deletions

View File

@ -164,9 +164,7 @@ public class ArrayIterator<E> implements ResettableIterator<E> {
/**
* Gets the array that this iterator is iterating over.
*
* @return the array this iterator iterates over, or <code>null</code> if
* the no-arg constructor was used and {@link #setArray(Object)} has never
* been called with a valid array.
* @return the array this iterator iterates over.
*/
public Object getArray() {
return array;