Author: cdouglas
Date: Tue Jul 1 14:24:33 2008
New Revision: 673215
URL: http://svn.apache.org/viewvc?rev=673215&view=rev
Log:
HADOOP-3652. Remove deprecated class OutputFormatBase.
(Amareshwari Sriramadasu via cdouglas)
Removed:
hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/OutputFormatBase.java
Modified:
hadoop/core/trunk/CHANGES.txt
hadoop/core/trunk/src/docs/src/documentation/content/xdocs/site.xml
hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/lib/MultipleOutputFormat.java
Modified: hadoop/core/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=673215&r1=673214&r2=673215&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Tue Jul 1 14:24:33 2008
@@ -19,6 +19,9 @@
setOutputPath(Path)
(Amareshwari Sriramadasu via omalley)
+ HADOOP-3652. Remove deprecated class OutputFormatBase.
+ (Amareshwari Sriramadasu via cdouglas)
+
NEW FEATURES
HADOOP-3341. Allow streaming jobs to specify the field separator for map
Modified: hadoop/core/trunk/src/docs/src/documentation/content/xdocs/site.xml
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/src/docs/src/documentation/content/xdocs/site.xml?rev=673215&r1=673214&r2=673215&view=diff
==============================================================================
--- hadoop/core/trunk/src/docs/src/documentation/content/xdocs/site.xml
(original)
+++ hadoop/core/trunk/src/docs/src/documentation/content/xdocs/site.xml Tue Jul
1 14:24:33 2008
@@ -191,10 +191,6 @@
<collect href="#collect(K, V)" />
</outputcollector>
<outputformat href="OutputFormat.html" />
- <outputformatbase href="OutputFormatBase.html">
- <setcompressoutput
href="#setCompressOutput(org.apache.hadoop.mapred.JobConf,%20boolean)" />
- <setoutputcompressorclass
href="#setOutputCompressorClass(org.apache.hadoop.mapred.JobConf,%20java.lang.Class)"
/>
- </outputformatbase>
<outputlogfilter href="OutputLogFilter.html" />
<sequencefileoutputformat href="SequenceFileOutputFormat.html">
<setoutputcompressiontype
href="#setOutputCompressionType(org.apache.hadoop.mapred.JobConf,%20org.apache.hadoop.io.SequenceFile.CompressionType)"
/>
Modified:
hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/lib/MultipleOutputFormat.java
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/lib/MultipleOutputFormat.java?rev=673215&r1=673214&r2=673215&view=diff
==============================================================================
---
hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/lib/MultipleOutputFormat.java
(original)
+++
hadoop/core/trunk/src/mapred/org/apache/hadoop/mapred/lib/MultipleOutputFormat.java
Tue Jul 1 14:24:33 2008
@@ -31,7 +31,7 @@
import org.apache.hadoop.util.Progressable;
/**
- * This abstract class extends the OutputFormatBase, allowing to write the
+ * This abstract class extends the FileOutputFormat, allowing to write the
* output data to different output files. There are three basic use cases for
* this class.
*