Whitespace fix

This commit is contained in:
ThisTestUser
2024-09-24 09:45:24 -04:00
parent 3bd3772dfb
commit 98ed82832e
2 changed files with 2 additions and 2 deletions

View File

@@ -533,7 +533,7 @@ public class BotCommand extends CommandInstance {
public void debug(CommandSender sender, @Arg("expression") String expression) { public void debug(CommandSender sender, @Arg("expression") String expression) {
new Debugger(sender).execute(expression); new Debugger(sender).execute(expression);
} }
@Autofill @Autofill
public List<String> debugAutofill(CommandSender sender, String[] args) { public List<String> debugAutofill(CommandSender sender, String[] args) {
return args.length == 2 ? new ArrayList<>(Debugger.AUTOFILL_METHODS) : new ArrayList<>(); return args.length == 2 ? new ArrayList<>(Debugger.AUTOFILL_METHODS) : new ArrayList<>();

View File

@@ -33,7 +33,7 @@ public class Debugger {
private final CommandSender sender; private final CommandSender sender;
public static final Set<String> AUTOFILL_METHODS = new HashSet<>(); public static final Set<String> AUTOFILL_METHODS = new HashSet<>();
static { static {
for (Method method : Debugger.class.getDeclaredMethods()) { for (Method method : Debugger.class.getDeclaredMethods()) {
if (!method.getName().equals("print") && !method.getName().equals("execute") && !method.getName().equals("buildObjects") if (!method.getName().equals("print") && !method.getName().equals("execute") && !method.getName().equals("buildObjects")