- sysout removed

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@76 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-01-10 16:00:51 +00:00
parent 64d25ac09c
commit 7fee410159

View File

@@ -60,12 +60,7 @@ public class Uart0 {
public static byte[] read() {
DataPacket packet;
try {
System.out.print("Data: ");
packet = Dispatch.readUART();
for (int i = 0; i < packet.data.length; i++) {
System.out.print((char) packet.data[i] + ", ");
}
System.out.println();
return packet.data;
} catch (Exception e) {
return null;