CHG: deleted some unused while loop

This commit is contained in:
hwinkel
2023-06-07 22:46:00 +02:00
parent 0222903f46
commit b94f852137

View File

@@ -73,9 +73,9 @@ void InternalUDPListener::start()
{ {
stoplistening_ = false; stoplistening_ = false;
listeningThread = std::thread(&InternalUDPListener::listen,this); listeningThread = std::thread(&InternalUDPListener::listen,this);
while (listening_ != true) // while (listening_ != true)
{ // {
} // }
} }
} }
} }