From a26fcf58e4404186c8af82920894a8b98af377bf Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Sun, 21 May 2017 06:40:03 +0000 Subject: [PATCH] Fix 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 --- .../java/org/apache/commons/collections4/MapIterator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/MapIterator.java b/src/main/java/org/apache/commons/collections4/MapIterator.java index f5647be8e..cfc48827b 100644 --- a/src/main/java/org/apache/commons/collections4/MapIterator.java +++ b/src/main/java/org/apache/commons/collections4/MapIterator.java @@ -31,14 +31,14 @@ import java.util.Iterator; * In use, this iterator iterates through the keys in the map. After each call * to next(), the getValue() method provides direct * access to the value. The value can also be set using setValue(). - *
+ * 
{@code
  * MapIterator it = map.mapIterator();
  * while (it.hasNext()) {
  *   String key = it.next();
  *   Integer value = it.getValue();
  *   it.setValue(value + 1);
  * }
- * 
+ * }
* * @param the type of the keys in the map * @param the type of the values in the map