removed obsolete empty ctor

This commit is contained in:
Robin Müller 2021-09-28 15:12:23 +02:00
parent 5a045d03a5
commit f2020b2492
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -29,7 +29,7 @@ TcpTmTcServer::TcpTmTcServer(object_id_t objectId, object_id_t tmtcTcpBridge,
ReceptionModes receptionMode):
SystemObject(objectId), tmtcBridgeId(tmtcTcpBridge), receptionMode(receptionMode),
tcpConfig(customTcpServerPort), receptionBuffer(receptionBufferSize),
ringBuffer(ringBufferSize, true), validPacketIds() {
ringBuffer(ringBufferSize, true) {
}
ReturnValue_t TcpTmTcServer::initialize() {