Remove unread private member (IDE0052)

This commit is contained in:
Matthias Mailänder
2022-09-10 19:45:39 +02:00
committed by Gustas
parent 43e0cca663
commit d3a8b07f05
14 changed files with 10 additions and 33 deletions

View File

@@ -1479,7 +1479,11 @@ namespace OpenRA.Server
{
readonly Connection connection;
readonly int[] pingHistory;
// TODO: future net code changes
#pragma warning disable IDE0052
readonly byte queueLength;
#pragma warning restore IDE0052
public ConnectionPingEvent(Connection connection, int[] pingHistory, byte queueLength)
{