Make SonarCloud happy

This commit is contained in:
Bond_009
2020-05-02 01:30:04 +02:00
parent 04f826e50c
commit 3623aafcb6
5 changed files with 5 additions and 40 deletions

View File

@@ -36,8 +36,6 @@ namespace Emby.Server.Implementations.HttpServer
/// </summary>
private readonly WebSocket _socket;
private bool _disposed = false;
/// <summary>
/// Initializes a new instance of the <see cref="WebSocketConnection" /> class.
/// </summary>
@@ -221,12 +219,6 @@ namespace Emby.Server.Implementations.HttpServer
};
await OnReceive(info).ConfigureAwait(false);
// Stop reading if there's no more data coming
if (result.IsCompleted)
{
return;
}
}
}
}