HADOOP-11661. Deprecate FileUtil#copyMerge. Contributed by Brahma Reddy Battula.
This commit is contained in:
parent
aac4d65bf9
commit
a8d8b80a20
@ -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,
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user