13
0
geforkt von Mirrors/Velocity

Fix Checkstyle error

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-07-14 21:31:16 -04:00
Ursprung 725fc2e16c
Commit bcab3be2e2

Datei anzeigen

@ -35,14 +35,14 @@ public interface RawCommand extends Command {
}
@Override
default CompletableFuture<List<String>> suggestAsync(CommandSource source,
String @NonNull [] currentArgs) {
return suggest(source, String.join(" ", currentArgs));
default List<String> suggest(CommandSource source, String @NonNull [] currentArgs) {
return suggestAsync(source, currentArgs).join();
}
@Override
default List<String> suggest(CommandSource source, String @NonNull [] currentArgs) {
return suggestAsync(source, currentArgs).join();
default CompletableFuture<List<String>> suggestAsync(CommandSource source,
String @NonNull [] currentArgs) {
return suggest(source, String.join(" ", currentArgs));
}
@Override