no longer print each time we send a keyboard packet

This commit is contained in:
Diego Waxemberg 2013-12-09 11:56:20 -05:00
parent da47b43ad3
commit 4e9fb1bbce

View File

@ -47,11 +47,7 @@ public class KeyboardPacket extends InputPacket {
bb.put(modifier);
bb.put((byte)0);
bb.put((byte)0);
byte[] packet = bb.array();
for (int i = 0; i < packet.length; i++) {
System.out.printf("%02x ", packet[i]);
}
System.out.println();
return bb.array();
}
}