mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove null check
This commit is contained in:
parent
062cd2ad1d
commit
754533f78b
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue