chore: make code style consistent

This commit is contained in:
Citymonstret 2022-06-10 10:24:50 +02:00 committed by Jason
parent a2cea2f33e
commit 89ec3fbf29
380 changed files with 479 additions and 936 deletions

View file

@ -80,9 +80,9 @@ final class CloudburstCommand<C> extends PluginCommand<Plugin> {
}
final C sender = this.manager.getCommandSenderMapper().apply(commandSender);
this.manager.executeCommand(
sender,
builder.toString()
)
sender,
builder.toString()
)
.whenComplete((commandResult, throwable) -> {
if (throwable != null) {
if (throwable instanceof CompletionException) {
@ -148,5 +148,4 @@ final class CloudburstCommand<C> extends PluginCommand<Plugin> {
});
return true;
}
}

View file

@ -117,7 +117,5 @@ public class CloudburstCommandManager<C> extends CommandManager<C> {
private CloudListener() {
}
}
}

View file

@ -66,5 +66,4 @@ class CloudburstPluginRegistrationHandler<C> implements CommandRegistrationHandl
Server.getInstance().getCommandRegistry().register(plugin, cloudburstCommand);
return true;
}
}