remove testing code, minor

This commit is contained in:
2025-07-09 10:22:31 +02:00
parent 767555c5cc
commit e0aadbcc0f
2 changed files with 3 additions and 8 deletions

View File

@@ -29,9 +29,6 @@ Receiver::~Receiver() = default;
Receiver::Receiver(uint16_t port) {
validatePortNumber(port);
//#ifdef SLS_USE_TESTS
if (port == 9999) throw RuntimeError("throwing for 9999 test");
//#endif
tcpipInterface = make_unique<ClientInterface>(port);
}