Final code cleanup

This commit is contained in:
JustArchi
2020-11-14 22:37:00 +01:00
parent ea1429a209
commit e82560259b
56 changed files with 2176 additions and 1428 deletions

View File

@@ -27,7 +27,7 @@ using Newtonsoft.Json;
namespace ArchiSteamFarm.Helpers {
public abstract class SerializableFile : IDisposable {
private readonly SemaphoreSlim FileSemaphore = new SemaphoreSlim(1, 1);
private readonly SemaphoreSlim FileSemaphore = new(1, 1);
protected string? FilePath { private get; set; }