Revert "null check on SerialPort.readBytes"

This reverts commit 991663409a.
This commit is contained in:
Cristian Maglie 2013-02-27 17:54:40 +01:00
parent 37f5315464
commit e71e5a5356
1 changed files with 2 additions and 4 deletions

View File

@ -185,11 +185,8 @@ public class Serial implements SerialPortEventListener {
case SerialPortEvent.RXFLAG:
try {
byte[] bytes = port.readBytes();
if (bytes == null) {
return;
}
String bytesAsString = new String(bytes);
if (monitor) {
if(monitor) {
System.out.print(bytesAsString);
}
if (this.consumer != null) {
@ -202,6 +199,7 @@ public class Serial implements SerialPortEventListener {
}
/**
* This will handle both ints, bytes and chars transparently.
*/