This commit is contained in:
kento2 2026-06-02 23:48:27 +02:00
parent 5cec83b992
commit 3cb30b1489

View file

@ -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