Bläddra i källkod

HADOOP-5077. Fix couple of JavaDoc warnings. (Raghu Angadi)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/branch-0.18@735215 13f79535-47bb-0310-9956-ffa450edef68
Raghu Angadi 16 år sedan
förälder
incheckning
7c7a3310fc
2 ändrade filer med 4 tillägg och 2 borttagningar
  1. 2 0
      CHANGES.txt
  2. 2 2
      src/core/org/apache/hadoop/util/CyclicIteration.java

+ 2 - 0
CHANGES.txt

@@ -139,6 +139,8 @@ Release 0.18.3 - Unreleased
     HADOOP-4997. Revert tmp files handling on DataNodes back to 0.17.
     sync() introduced in 0.18 has less gaurantees (Raghu Angadi).
 
+    HADOOP-5077. Fix couple of JavaDoc warnings. (Raghu Angadi)
+
 Release 0.18.2 - 2008-11-03
 
   BUG FIXES

+ 2 - 2
src/core/org/apache/hadoop/util/CyclicIteration.java

@@ -22,7 +22,7 @@ import java.util.Map;
 import java.util.NoSuchElementException;
 import java.util.SortedMap;
 
-/** Provide an cyclic {@link Iterator} for a {@link NavigableMap}.
+/** Provide an cyclic {@link Iterator} for a {@link SortedMap}.
  * The {@link Iterator} navigates the entries of the map
  * according to the map's ordering.
  * If the {@link Iterator} hits the last entry of the map,
@@ -35,7 +35,7 @@ public class CyclicIteration<K, V> implements Iterable<Map.Entry<K, V>> {
 
   /** Construct an {@link Iterable} object,
    * so that an {@link Iterator} can be created  
-   * for iterating the given {@link NavigableMap}.
+   * for iterating the given {@link SortedMap}.
    * The iteration begins from the starting key exclusively.
    */
   public CyclicIteration(SortedMap<K, V> navigablemap, K startingkey) {