diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 1551d5ea25f..6312fc8e115 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -76,6 +76,9 @@ Trunk (unreleased changes) HADOOP-8415. Add getDouble() and setDouble() in org.apache.hadoop.conf.Configuration (Jan van der Lugt via harsh) + HADOOP-7659. fs -getmerge isn't guaranteed to work well over non-HDFS + filesystems (harsh) + BUG FIXES HADOOP-8177. MBeans shouldn't try to register when it fails to create MBeanName. diff --git a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/RawLocalFileSystem.java b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/RawLocalFileSystem.java index 85288df3206..58492e13181 100644 --- a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/RawLocalFileSystem.java +++ b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/RawLocalFileSystem.java @@ -307,6 +307,12 @@ public class RawLocalFileSystem extends FileSystem { return FileUtil.fullyDelete(f); } + /** + * {@inheritDoc} + * + * (Note: Returned list is not sorted in any given order, + * due to reliance on Java's {@link File#list()} API.) + */ public FileStatus[] listStatus(Path f) throws IOException { File localf = pathToFile(f); FileStatus[] results;