HBASE-3711 - amend patch to fix compilation error

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1086747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Todd Lipcon 2011-03-29 21:09:48 +00:00
parent fbd1666643
commit c222e2b486
1 changed files with 2 additions and 2 deletions

View File

@ -271,11 +271,11 @@ public class ImportTsv {
if (skipBadLines) {
System.err.println(
"Bad line at offset: " + offset.get() + ":\n" +
badLine.getMessage());
e.getMessage());
badLineCount.increment(1);
return;
} else {
throw new IOException(badLine);
throw new IOException(e);
}
} catch (InterruptedException e) {
e.printStackTrace();