mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
[stylecop] Launcher (#5968)
* Should be last stylecop change! * two more tweaks
This commit is contained in:
@@ -12,7 +12,7 @@ namespace PowerLauncher.Storage
|
||||
{
|
||||
public List<HistoryItem> Items { get; } = new List<HistoryItem>();
|
||||
|
||||
private int _maxHistory = 300;
|
||||
private readonly int _maxHistory = 300;
|
||||
|
||||
public void Add(string query)
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace PowerLauncher.Storage
|
||||
public class UserSelectedRecord
|
||||
{
|
||||
[JsonProperty]
|
||||
private Dictionary<string, int> records = new Dictionary<string, int>();
|
||||
private readonly Dictionary<string, int> records = new Dictionary<string, int>();
|
||||
|
||||
public void Add(Result result)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user