mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Initialize uninitialized cache
This commit is contained in:
parent
80a2f0df71
commit
77aff43d1a
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ namespace Flow.Launcher.Infrastructure
|
||||||
|
|
||||||
public class Alphabet : IAlphabet
|
public class Alphabet : IAlphabet
|
||||||
{
|
{
|
||||||
private ConcurrentDictionary<string, string> _pinyinCache;
|
private ConcurrentDictionary<string, string> _pinyinCache = new ConcurrentDictionary<string, string>();
|
||||||
private Settings _settings;
|
private Settings _settings;
|
||||||
|
|
||||||
public void Initialize([NotNull] Settings settings)
|
public void Initialize([NotNull] Settings settings)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue