瀏覽代碼

merge -c 1331686 from branch-1, for MAPREDUCE-4207

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1.0@1331687 13f79535-47bb-0310-9956-ffa450edef68
Harsh J 13 年之前
父節點
當前提交
4fad875bb4
共有 2 個文件被更改,包括 3 次插入1 次删除
  1. 3 0
      CHANGES.txt
  2. 0 1
      src/mapred/org/apache/hadoop/mapreduce/lib/input/FileInputFormat.java

+ 3 - 0
CHANGES.txt

@@ -47,6 +47,9 @@ Release 1.0.3 - unreleased
     HDFS-3310. Make sure that we abort when no edit log directories are left.
     (Colin Patrick McCabe via eli)
 
+    MAPREDUCE-4207. Remove System.out.println() in FileInputFormat
+    (Kihwal Lee via harsh)
+
 Release 1.0.2 - 2012.03.24
 
   NEW FEATURES

+ 0 - 1
src/mapred/org/apache/hadoop/mapreduce/lib/input/FileInputFormat.java

@@ -422,7 +422,6 @@ public abstract class FileInputFormat<K, V> extends InputFormat<K, V> {
    */
   public static Path[] getInputPaths(JobContext context) {
     String dirs = context.getConfiguration().get("mapred.input.dir", "");
-    System.out.println("****" + dirs);
     String [] list = StringUtils.split(dirs);
     Path[] result = new Path[list.length];
     for (int i = 0; i < list.length; i++) {