mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove readonly to reload correctly
This commit is contained in:
parent
d537ce22f8
commit
fdbb183064
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ namespace Flow.Launcher.Infrastructure
|
|||
{
|
||||
public class PinyinAlphabet : IAlphabet
|
||||
{
|
||||
private readonly ConcurrentDictionary<string, (string translation, TranslationMapping map)> _pinyinCache =
|
||||
private ConcurrentDictionary<string, (string translation, TranslationMapping map)> _pinyinCache =
|
||||
new();
|
||||
|
||||
private readonly Settings _settings;
|
||||
|
|
|
|||
Loading…
Reference in a new issue