Update RequiredArgumentBuilder.java
Make the constructor protected so it can be inherited
This commit is contained in:
parent
a6c4baa1b6
commit
06a66af8dc
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ public class RequiredArgumentBuilder<S, T> extends ArgumentBuilder<S, RequiredAr
|
||||||
private final ArgumentType<T> type;
|
private final ArgumentType<T> type;
|
||||||
private SuggestionProvider<S> suggestionsProvider = null;
|
private SuggestionProvider<S> suggestionsProvider = null;
|
||||||
|
|
||||||
private RequiredArgumentBuilder(final String name, final ArgumentType<T> type) {
|
protected RequiredArgumentBuilder(final String name, final ArgumentType<T> type) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue