[Modify] Polish it

This commit is contained in:
sta 2021-12-28 19:38:05 +09:00
parent ca78024530
commit f3b930f6a6

View File

@ -942,15 +942,7 @@ namespace WebSocketSharp.Server
private void stopReceiving (int millisecondsTimeout)
{
try {
_listener.Stop ();
}
catch (Exception ex) {
var msg = "The underlying listener has failed to stop.";
throw new InvalidOperationException (msg, ex);
}
_listener.Stop ();
_receiveThread.Join (millisecondsTimeout);
}