From b9abf5c728a1b505bf4ab4e2bcde2f91ebfdbb2e Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 27 Nov 2007 16:58:42 +0000 Subject: [PATCH] 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 --- src/java/org/apache/hadoop/hbase/shell/CreateCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java b/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java index 9ef573faca2..d45186876be 100644 --- a/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java +++ b/src/java/org/apache/hadoop/hbase/shell/CreateCommand.java @@ -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; } -} \ No newline at end of file +}