[stylecop] Launcher (#5968)

* Should be last stylecop change!

* two more tweaks
This commit is contained in:
Clint Rutkas
2020-08-14 13:35:06 -07:00
committed by GitHub
parent e0a1b478a1
commit 6514712054
9 changed files with 594 additions and 597 deletions

View File

@@ -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)
{

View File

@@ -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)
{