.
Some checks failed
Build and Deploy artifact / build (push) Failing after 43s

This commit is contained in:
kento2 2026-08-05 23:17:19 +02:00
parent 930ce3ff46
commit 03c41c7835
3 changed files with 6 additions and 2 deletions

View file

@ -5,6 +5,10 @@ import de.kentoj.kencommandapi.api.suggestion.SuggestionProvider;
public record StringArgumentType<T>(boolean greedy) implements ArgumentType<T, String> {
public StringArgumentType() {
this(false);
}
@Override
public String parseInputUnchecked(String string) {
return string;