Fix <Generic type> not being displayed in javadoc

Thanks to Ruben Anders

This closes #16



git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1795689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bruno P. Kinoshita 2017-05-21 06:40:03 +00:00
parent 117d7e80dc
commit a26fcf58e4
1 changed files with 2 additions and 2 deletions

View File

@ -31,14 +31,14 @@ import java.util.Iterator;
* In use, this iterator iterates through the keys in the map. After each call
* to <code>next()</code>, the <code>getValue()</code> method provides direct
* access to the value. The value can also be set using <code>setValue()</code>.
* <pre>
* <pre>{@code
* MapIterator<String,Integer> it = map.mapIterator();
* while (it.hasNext()) {
* String key = it.next();
* Integer value = it.getValue();
* it.setValue(value + 1);
* }
* </pre>
* }</pre>
*
* @param <K> the type of the keys in the map
* @param <V> the type of the values in the map