Fix javadoc warning

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@797264 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-23 23:52:06 +00:00
parent 69f8d4e935
commit a6e3eb9411
1 changed files with 5 additions and 2 deletions

View File

@ -101,12 +101,15 @@ public class Migrate extends Configured implements Tool {
" See http://wiki.apache.org/hadoop/Hbase/HowToMigrate for more information."; " See http://wiki.apache.org/hadoop/Hbase/HowToMigrate for more information.";
/** /**
* @param conf * Default constructor.
*/ */
public Migrate() { public Migrate() {
super(); super();
} }
/**
* @param conf
*/
public Migrate(final HBaseConfiguration c) { public Migrate(final HBaseConfiguration c) {
super(c); super(c);
} }
@ -545,4 +548,4 @@ public class Migrate extends Configured implements Tool {
} }
System.exit(status); System.exit(status);
} }
} }