Follow suggested cleanup from VS

This commit is contained in:
Matt Nadareski
2020-10-07 16:11:05 -07:00
parent b7db9f7f14
commit f3031fe5f9
20 changed files with 152 additions and 126 deletions

View File

@@ -44,12 +44,12 @@ namespace SabreTools.Library.DatFiles
/// <summary>
/// Lock for statistics calculation
/// </summary>
private object statsLock = new object();
private readonly object statsLock = new object();
/// <summary>
/// Logging object
/// </summary>
private static Logger logger = new Logger();
private readonly static Logger logger = new Logger();
#endregion