HADOOP-2289 Useless efforts of looking for the non-existant table in select command.

FIx javadoc warning introduced by commit of HADOOP-2289 patch (odd -- it got
a +1 on javadoc from hudson).
M    CreateCommand.java


git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@598691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2007-11-27 16:58:42 +00:00
parent 70004192f1
commit b9abf5c728
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public class CreateCommand extends SchemaModificationCommand {
/**
* Sets the table to be created.
* @param table Table to be created
* @param tableName Table to be created
*/
public void setTable(String tableName) {
this.tableName = new Text(tableName);
@ -90,4 +90,4 @@ public class CreateCommand extends SchemaModificationCommand {
public CommandType getCommandType() {
return CommandType.DDL;
}
}
}