MAPREDUCE-4923. Add toString method to TaggedInputSplit. (sandyr via tucu)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1434993 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2013-01-18 00:40:58 +00:00
parent c9dd4fa67f
commit 1c308188bb
3 changed files with 12 additions and 0 deletions

View File

@ -259,6 +259,8 @@ Release 2.0.3-alpha - Unreleased
MAPREDUCE-4924. flakey test: org.apache.hadoop.mapred.TestClusterMRNotification.testMR.
(rkanter via tucu)
MAPREDUCE-4923. Add toString method to TaggedInputSplit. (sandyr via tucu)
Release 2.0.2-alpha - 2012-09-07
INCOMPATIBLE CHANGES

View File

@ -138,4 +138,9 @@ public void setConf(Configuration conf) {
this.conf = conf;
}
@Override
public String toString() {
return inputSplit.toString();
}
}

View File

@ -157,4 +157,9 @@ public void setConf(Configuration conf) {
this.conf = conf;
}
@Override
public String toString() {
return inputSplit.toString();
}
}