mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
incorrect override of SA1401 (#5965)
This commit is contained in:
@@ -18,8 +18,7 @@ namespace Microsoft.Plugin.Shell
|
||||
|
||||
public bool RunAsAdministrator { get; set; } = false;
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1401:Fields should be private", Justification = "StyleCop error, actually used in main.cs")]
|
||||
public Dictionary<string, int> Count = new Dictionary<string, int>();
|
||||
public Dictionary<string, int> Count { get; set; } = new Dictionary<string, int>();
|
||||
|
||||
public void AddCmdHistory(string cmdName)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user