瀏覽代碼

HADOOP-3806. Remove debug statement to stdout from QuickSort.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/branches/branch-0.18@678646 13f79535-47bb-0310-9956-ffa450edef68
Christopher Douglas 17 年之前
父節點
當前提交
835c5f5890
共有 2 個文件被更改,包括 2 次插入1 次删除
  1. 2 0
      CHANGES.txt
  2. 0 1
      src/core/org/apache/hadoop/util/QuickSort.java

+ 2 - 0
CHANGES.txt

@@ -777,6 +777,8 @@ Release 0.18.0 - Unreleased
     HADOOP-3794. Return modification time instead of zero for KosmosFileSystem.
     (Sriram Rao via cdouglas)
 
+    HADOOP-3806. Remove debug statement to stdout from QuickSort. (cdouglas)
+
 Release 0.17.2 - Unreleased
 
   BUG FIXES

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

@@ -75,7 +75,6 @@ public final class QuickSort implements IndexedSorter {
     }
     if (--depth < 0) {
       // give up
-      System.out.print("H");
       alt.sort(s, p, r, rep);
       return;
     }