Removed forgotten debug print

This commit is contained in:
GideonLeGrange 2013-07-12 11:22:49 +02:00
parent 900ce2f91c
commit 1fad1ec9e9
1 changed files with 0 additions and 1 deletions

View File

@ -15,7 +15,6 @@ import java.util.List;
class Util { class Util {
static void write(Command cmd, OutputStream out) throws UnsupportedEncodingException, IOException { static void write(Command cmd, OutputStream out) throws UnsupportedEncodingException, IOException {
System.out.println("cmd = '" + cmd + "'");
encode(cmd.getCommand(), out); encode(cmd.getCommand(), out);
for (Parameter param : cmd.getParameters()) { for (Parameter param : cmd.getParameters()) {
encode(String.format("=%s=%s", param.getName(), param.hasValue() ? param.getValue() : "" ), out); encode(String.format("=%s=%s", param.getName(), param.hasValue() ? param.getValue() : "" ), out);