Remove null check

This commit is contained in:
Jack251970 2025-06-08 14:28:37 +08:00
parent 062cd2ad1d
commit 754533f78b

View file

@ -296,7 +296,7 @@ namespace Flow.Launcher
{
foreach (var savable in _pluginJsonStorages.Values)
{
savable?.Save();
savable.Save();
}
}
@ -514,7 +514,7 @@ namespace Flow.Launcher
{
foreach (var savable in _pluginBinaryStorages.Values)
{
savable?.Save();
savable.Save();
}
}