HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation. Contributed by J.Andreina.

This commit is contained in:
Jakob Homan 2015-04-26 18:35:01 -07:00
parent 8847777ae4
commit 1a2459bd4b
2 changed files with 5 additions and 2 deletions

View File

@ -204,7 +204,10 @@ Trunk (Unreleased)
HADOOP-11850. Typos in hadoop-common java docs. (Surendra Singh Lilhore
via jghoman)
HADOOP-11852. Disable symlinks in trunk.
HADOOP-11852. Disable symlinks in trunk. (Andrew Wang)
HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation.
(J.Andreina via jghoman)
BUG FIXES

View File

@ -43,7 +43,7 @@ public class CommandFormat {
* @see #CommandFormat(int, int, String...)
*/
@Deprecated
public CommandFormat(String n, int min, int max, String ... possibleOpt) {
public CommandFormat(String name, int min, int max, String ... possibleOpt) {
this(min, max, possibleOpt);
}