MAPREDUCE-5012. Typo in javadoc for IdentityMapper class. Contributed by Adam Monsen.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1447865 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
461e614a3a
commit
1c49e77998
|
@ -152,6 +152,9 @@ Trunk (Unreleased)
|
||||||
MAPREDUCE-4884. Streaming tests fail to start MiniMRCluster due to missing
|
MAPREDUCE-4884. Streaming tests fail to start MiniMRCluster due to missing
|
||||||
queue configuration. (Chris Nauroth via suresh)
|
queue configuration. (Chris Nauroth via suresh)
|
||||||
|
|
||||||
|
MAPREDUCE-5012. Typo in javadoc for IdentityMapper class. (Adam Monsen
|
||||||
|
via suresh)
|
||||||
|
|
||||||
Release 2.0.4-beta - UNRELEASED
|
Release 2.0.4-beta - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -35,7 +35,7 @@ import org.apache.hadoop.mapred.MapReduceBase;
|
||||||
public class IdentityMapper<K, V>
|
public class IdentityMapper<K, V>
|
||||||
extends MapReduceBase implements Mapper<K, V, K, V> {
|
extends MapReduceBase implements Mapper<K, V, K, V> {
|
||||||
|
|
||||||
/** The identify function. Input key/value pair is written directly to
|
/** The identity function. Input key/value pair is written directly to
|
||||||
* output.*/
|
* output.*/
|
||||||
public void map(K key, V val,
|
public void map(K key, V val,
|
||||||
OutputCollector<K, V> output, Reporter reporter)
|
OutputCollector<K, V> output, Reporter reporter)
|
||||||
|
|
Loading…
Reference in New Issue