Skip to content

Commit

Permalink
fix(Velocity): Fixed printMsg(ProxyServer,List<String>)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeV220 committed Jan 7, 2023
1 parent c671e9d commit 4129e7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void broadcastMsg(@NotNull ProxyServer proxyServer, final Object i
}

public static void printMsg(@NotNull ProxyServer proxyServer, final @NotNull List<String> input) {
input.forEach(s -> printMsg(proxyServer, input));
input.forEach(s -> printMsg(proxyServer, s));
}

public static void printMsg(@NotNull ProxyServer proxyServer, final Object input) {
Expand Down

0 comments on commit 4129e7c

Please sign in to comment.