Fixes some minor warnings and spacing

This commit is contained in:
2022-05-29 19:30:42 +02:00
parent 5e7229ce35
commit 91e0f92734
5 changed files with 22 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ public class StargateCommand extends JavaPlugin {
StargateAPI stargateAPI = stargateProvider.getProvider(); StargateAPI stargateAPI = stargateProvider.getProvider();
//Register commands //Register commands
PluginCommand stargateCommand = this.getCommand("stargatecommand"); PluginCommand stargateCommand = this.getCommand("stargateCommand");
if (stargateCommand != null) { if (stargateCommand != null) {
stargateCommand.setExecutor(new CommandStarGateCommand(stargateAPI)); stargateCommand.setExecutor(new CommandStarGateCommand(stargateAPI));
stargateCommand.setTabCompleter(new StargateCommandTabCompleter()); stargateCommand.setTabCompleter(new StargateCommandTabCompleter());

View File

@@ -12,7 +12,7 @@ import org.jetbrains.annotations.NotNull;
*/ */
public class CommandStarGateCommand implements CommandExecutor { public class CommandStarGateCommand implements CommandExecutor {
private StargateAPI stargateAPI; private final StargateAPI stargateAPI;
public CommandStarGateCommand(StargateAPI stargateAPI) { public CommandStarGateCommand(StargateAPI stargateAPI) {
this.stargateAPI = stargateAPI; this.stargateAPI = stargateAPI;