HADOOP-11661. Deprecate FileUtil#copyMerge. Contributed by Brahma Reddy Battula.

This commit is contained in:
Akira Ajisaka 2016-04-01 13:59:14 +09:00
parent aac4d65bf9
commit a8d8b80a20
2 changed files with 2 additions and 0 deletions

View File

@ -381,6 +381,7 @@ public static boolean copy(FileSystem srcFS, FileStatus srcStatus,
}
@Deprecated
/** Copy all files in a directory to one output file (merge). */
public static boolean copyMerge(FileSystem srcFS, Path srcDir,
FileSystem dstFS, Path dstFile,

View File

@ -559,6 +559,7 @@ public void testCopyMergeSingleDirectory() throws IOException {
* @return boolean true if the call to FileUtil.copyMerge was successful.
* @throws IOException if an I/O error occurs.
*/
@SuppressWarnings("deprecation")
private boolean copyMerge(String src, String dst)
throws IOException {
Configuration conf = new Configuration();