浏览代码

HADOOP-4691. Correct a link in the javadoc of IndexedSortable. (szetszwo)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@719324 13f79535-47bb-0310-9956-ffa450edef68
Tsz-wo Sze 16 年之前
父节点
当前提交
43a8580087
共有 2 个文件被更改,包括 3 次插入1 次删除
  1. 2 0
      CHANGES.txt
  2. 1 1
      src/core/org/apache/hadoop/util/IndexedSortable.java

+ 2 - 0
CHANGES.txt

@@ -181,6 +181,8 @@ Trunk (unreleased changes)
     HADOOP-4141. Fix bug in ScriptBasedMapping causing potential infinite
     loop on misconfigured hadoop-site. (Aaron Kimball via tomwhite)
 
+    HADOOP-4691. Correct a link in the javadoc of IndexedSortable. (szetszwo)
+
 Release 0.19.0 - 2008-11-18
 
   INCOMPATIBLE CHANGES

+ 1 - 1
src/core/org/apache/hadoop/util/IndexedSortable.java

@@ -25,7 +25,7 @@ public interface IndexedSortable {
 
   /**
    * Compare items at the given addresses consistent with the semantics of
-   * {@link java.util.Comparable#compare}.
+   * {@link java.util.Comparator#compare(Object, Object)}.
    */
   int compare(int i, int j);