Skip to content

Commit

Permalink
HADOOP-11857. Fix CommandFormat#commandFormat java doc annotation. Co…
Browse files Browse the repository at this point in the history
…ntributed by J.Andreina.
  • Loading branch information
jghoman committed Apr 27, 2015
1 parent 8847777 commit 1a2459b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion hadoop-common-project/hadoop-common/CHANGES.txt
Expand Up @@ -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

Expand Down
Expand Up @@ -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);
}

Expand Down

0 comments on commit 1a2459b

Please sign in to comment.