HBASE-9838 Fix javadoc warning in ImportTsv#TsvParser ctor (Ram)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1535751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2013-10-25 14:33:09 +00:00
parent 689014f2e5
commit d36b7ce519
1 changed files with 2 additions and 5 deletions

View File

@ -118,12 +118,9 @@ public class ImportTsv extends Configured implements Tool {
/**
* @param columnsSpecification the list of columns to parser out, comma separated.
* The row key should be the special token TsvParser.ROWKEY_COLUMN_SPEC
* @param tagSeperatorStr
* @param separatorStr
*/
public TsvParser(String columnsSpecification, String seperatorStr) {
this(columnsSpecification, seperatorStr, null);
}
public TsvParser(String columnsSpecification, String separatorStr, String tagSeperatorStr) {
public TsvParser(String columnsSpecification, String separatorStr) {
// Configure separator
byte[] separator = Bytes.toBytes(separatorStr);
Preconditions.checkArgument(separator.length == 1,