Skip to content

Commit

Permalink
Remove slot expander debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop committed Feb 16, 2024
1 parent 718ade4 commit a9775fd
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public static List<Integer> expand(@NotNull Object index) {
String[] commaSplit = expand.contains(",") ? expand.split(",") : new String[]{expand};
for (String comma : commaSplit) {
if (comma.contains("-")) {
System.out.println(comma);
String[] dashSplit = comma.split("-");
if (dashSplit.length != 2) {
DynamicGui.get().getLogger().error("Invalid range pattern '%s'", expand);
Expand Down

0 comments on commit a9775fd

Please sign in to comment.