Make files readonly

This commit is contained in:
Stepan Goremykin
2023-10-08 00:40:58 +02:00
parent 2360d28cbb
commit 526f9a825c
7 changed files with 11 additions and 13 deletions

View File

@@ -40,9 +40,9 @@ namespace Emby.Server.Implementations.EntryPoints
/// <summary>
/// The UDP server.
/// </summary>
private List<UdpServer> _udpServers;
private CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
private bool _disposed = false;
private readonly List<UdpServer> _udpServers;
private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
private bool _disposed;
/// <summary>
/// Initializes a new instance of the <see cref="UdpServerEntryPoint" /> class.