We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efcce81 commit 071b75bCopy full SHA for 071b75b
Flow.Launcher.Infrastructure/PinyinAlphabet.cs
@@ -41,11 +41,8 @@ public void Reload()
41
42
private void CreateDoublePinyinTableFromStream(Stream jsonStream)
43
{
44
- var table = JsonSerializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(jsonStream);
45
- if (table == null)
46
- {
+ var table = JsonSerializer.Deserialize<Dictionary<string, Dictionary<string, string>>>(jsonStream) ??
47
throw new InvalidOperationException("Failed to deserialize double pinyin table: result is null");
48
- }
49
50
var schemaKey = _settings.DoublePinyinSchema.ToString();
51
if (!table.TryGetValue(schemaKey, out var schemaDict))
0 commit comments