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

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1434994 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2013-01-18 00:41:26 +00:00
parent 1247530c6f
commit 1d6bd54e29
3 changed files with 12 additions and 0 deletions

View File

@ -100,6 +100,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();
}
}