make readonly

This commit is contained in:
Stanley Dimant
2024-09-10 13:31:12 +02:00
parent 230e6910a6
commit f36ed9e50c

View File

@@ -17,7 +17,7 @@ public class PlayerPerformanceService
private readonly ILogger<PlayerPerformanceService> _logger;
private readonly MareMediator _mediator;
private readonly PlayerPerformanceConfigService _playerPerformanceConfigService;
private Dictionary<string, bool> _warnedForPlayers = new(StringComparer.Ordinal);
private readonly Dictionary<string, bool> _warnedForPlayers = new(StringComparer.Ordinal);
public PlayerPerformanceService(ILogger<PlayerPerformanceService> logger, MareMediator mediator,
PlayerPerformanceConfigService playerPerformanceConfigService, FileCacheManager fileCacheManager,