.
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.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
@ -20,7 +21,7 @@ public class CommandNodeImpl<T, S extends CommandContext<T, ?>> implements Comma
|
||||||
@Getter
|
@Getter
|
||||||
private final Set<CommandNode<T, S>> literals = new HashSet<>();
|
private final Set<CommandNode<T, S>> literals = new HashSet<>();
|
||||||
@Getter
|
@Getter
|
||||||
private final List<CommandArgument<T, S, ?>> arguments = new HashSet<>();
|
private final List<CommandArgument<T, S, ?>> arguments = new ArrayList<>();
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue