Skip to content
Snippets Groups Projects
Commit e4e9ea27 authored by Christian Wulf's avatar Christian Wulf
Browse files

fix bug in TcpReader concerning buffer underflows

parent eb06162a
No related branches found
No related tags found
No related merge requests found
...@@ -88,8 +88,6 @@ public class TcpReader extends AbstractTcpReader<IMonitoringRecord> { ...@@ -88,8 +88,6 @@ public class TcpReader extends AbstractTcpReader<IMonitoringRecord> {
record.setLoggingTimestamp(loggingTimestamp); record.setLoggingTimestamp(loggingTimestamp);
outputPort.send(record); outputPort.send(record);
} catch (final BufferUnderflowException ex) {
super.logger.error("Failed to create: " + recordClassName, ex);
} catch (final RecordInstantiationException ex) { } catch (final RecordInstantiationException ex) {
super.logger.error("Failed to create: " + recordClassName, ex); super.logger.error("Failed to create: " + recordClassName, ex);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment