Fix javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1482073 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d9ed7afd9e
commit
556ac8b0ad
|
@ -29,8 +29,8 @@ import java.util.Iterator;
|
|||
* The Iterators are provided by {@link #nextIterator(int)} which has to be overridden by
|
||||
* sub-classes and allows to lazily create the Iterators as they are accessed:
|
||||
* <pre>
|
||||
* return new LazyIteratorChain<String>() {
|
||||
* protected Iterator<String> nextIterator(int count) {
|
||||
* return new LazyIteratorChain<String>() {
|
||||
* protected Iterator<String> nextIterator(int count) {
|
||||
* return count == 1 ? Arrays.asList("foo", "bar").iterator() : null;
|
||||
* }
|
||||
* };
|
||||
|
|
Loading…
Reference in New Issue