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:
Thomas Neidhart 2013-05-13 20:09:40 +00:00
parent d9ed7afd9e
commit 556ac8b0ad
1 changed files with 2 additions and 2 deletions

View File

@ -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&lt;String&gt;() {
* protected Iterator&lt;String&gt; nextIterator(int count) {
* return count == 1 ? Arrays.asList("foo", "bar").iterator() : null;
* }
* };