Skip to content

Commit 27b4c35

Browse files
author
damt
committed
[+] Forgot to remove de-bug woops
1 parent 539ce65 commit 27b4c35

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/xyz/damt/command/command/Command.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,11 @@ public final Command getSubCommand(String[] args) {
7979

8080
List<String> strings = new ArrayList<>(Arrays.asList(commandArg));
8181

82-
System.out.println("[0] - " + strings);
83-
8482
List<String> argsList = new ArrayList<>(Arrays.asList(args));
8583

8684
strings.removeIf(s -> !argsList.contains(s));
8785
commandArg = strings.toArray(new String[0]);
8886

89-
System.out.println("[1] - " + strings);
90-
System.out.println("[2] - " + Arrays.toString(args));
91-
9287
if ((original.length - 1) == commandArg.length && commandArg.length != 0 && commandArg[commandArg.length - 1].equalsIgnoreCase(args[commandArg.length - 1])) {
9388
return command;
9489
}

0 commit comments

Comments
 (0)