.
This commit is contained in:
parent
5cec83b992
commit
3cb30b1489
1 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ import lombok.Setter;
|
|||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
|
@ -20,7 +21,7 @@ public class CommandNodeImpl<T, S extends CommandContext<T, ?>> implements Comma
|
|||
@Getter
|
||||
private final Set<CommandNode<T, S>> literals = new HashSet<>();
|
||||
@Getter
|
||||
private final List<CommandArgument<T, S, ?>> arguments = new HashSet<>();
|
||||
private final List<CommandArgument<T, S, ?>> arguments = new ArrayList<>();
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue