fix again
This commit is contained in:
parent
02a6254f6a
commit
97aba91d59
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public class CommandContext {
|
||||||
|
|
||||||
public String getString (boolean greedy, boolean required) throws CommandException { return getString(greedy, required, "string"); }
|
public String getString (boolean greedy, boolean required) throws CommandException { return getString(greedy, required, "string"); }
|
||||||
public String getString (boolean greedy, boolean required, boolean returnLowerCase) throws CommandException { return getString(greedy, returnLowerCase, required, "string"); }
|
public String getString (boolean greedy, boolean required, boolean returnLowerCase) throws CommandException { return getString(greedy, returnLowerCase, required, "string"); }
|
||||||
private String getString (boolean greedy, boolean required, String type) throws CommandException { return getString(greedy, required, false, type); }
|
private String getString (boolean greedy, boolean required, String type) throws CommandException { return getString(greedy, false, required, type); }
|
||||||
private String getString (boolean greedy, boolean returnLowerCase, boolean required, String type) throws CommandException {
|
private String getString (boolean greedy, boolean returnLowerCase, boolean required, String type) throws CommandException {
|
||||||
if (argsPosition >= args.length || args[argsPosition] == null) {
|
if (argsPosition >= args.length || args[argsPosition] == null) {
|
||||||
if (required) {
|
if (required) {
|
||||||
|
|
Loading…
Reference in a new issue