mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[Awake] Enable analyzer and fix warnings (#16899)
* [Awake] Enable analyzer and fix warnings
* Suppress "CA1051:Do not declare visible instance fields" for structs
* Revert "Suppress "CA1051:Do not declare visible instance fields" for structs"
This reverts commit bea215bffa.
* Suppress "CA1051:Do not declare visible instance fields" for structs
* spellchecker
This commit is contained in:
committed by
GitHub
parent
46684966a1
commit
425346b1f2
@@ -36,9 +36,9 @@ namespace Awake
|
||||
// the pull request is issued.
|
||||
private static readonly string BuildId = "ARBITER_01312022";
|
||||
|
||||
private static Mutex? _mutex = null;
|
||||
private static FileSystemWatcher? _watcher = null;
|
||||
private static SettingsUtils? _settingsUtils = null;
|
||||
private static Mutex? _mutex;
|
||||
private static FileSystemWatcher? _watcher;
|
||||
private static SettingsUtils? _settingsUtils;
|
||||
|
||||
public static Mutex LockMutex { get => _mutex; set => _mutex = value; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user