Author: stack Date: Tue Nov 27 08:58:42 2007 New Revision: 598691 URL: http://svn.apache.org/viewvc?rev=598691&view=rev Log: 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
Modified: lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java Modified: lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java?rev=598691&r1=598690&r2=598691&view=diff ============================================================================== --- lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java (original) +++ lucene/hadoop/trunk/src/contrib/hbase/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java Tue Nov 27 08:58:42 2007 @@ -72,7 +72,7 @@ /** * 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 CommandType getCommandType() { return CommandType.DDL; } -} \ No newline at end of file +}