Skip to content

Commit

Permalink
Removed debug in utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqzn committed Nov 10, 2024
1 parent 1cb24a2 commit 3930413
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/main/java/dev/velix/imperat/util/StringUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public static ArgumentQueue parseToQueue(String argumentsInOneLine, boolean auto
return !autoCompletion ? ArgumentQueue.empty(argumentsInOneLine) : ArgumentQueue.parse(" ");

ArgumentQueue toCollect = ArgumentQueue.empty(argumentsInOneLine);
System.out.println("ARGUMENT ONE LINE= '" + argumentsInOneLine + "'");
char[] chars = argumentsInOneLine.toCharArray();
StringBuilder builder = new StringBuilder();
for (int i = 0; i < chars.length; i++) {
Expand Down

0 comments on commit 3930413

Please sign in to comment.