git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@707936 13f79535-47bb-0310-9956-ffa450edef68
@@ -54,6 +54,8 @@ Trunk (unreleased changes)
HADOOP-4485. Add a compile-native ant task, as a shorthand. (enis)
+ HADOOP-4510. Make getTaskOutputPath public. (Chris Wensel via omalley)
+
OPTIMIZATIONS
BUG FIXES
@@ -211,7 +211,7 @@ public abstract class FileOutputFormat<K, V> implements OutputFormat<K, V> {
* @return path to the task's temporary output file
* @throws IOException
*/
- protected static Path getTaskOutputPath(JobConf conf, String name)
+ public static Path getTaskOutputPath(JobConf conf, String name)
throws IOException {
// ${mapred.out.dir}
Path outputPath = getOutputPath(conf);