Remove readonly to reload correctly

This commit is contained in:
VictoriousRaptor 2025-07-13 19:00:31 +08:00
parent d537ce22f8
commit fdbb183064

View file

@ -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;