Skip to content

Commit 754533f

Browse files
committed
Remove null check
1 parent 062cd2a commit 754533f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher/PublicAPIInstance.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public void SavePluginSettings()
296296
{
297297
foreach (var savable in _pluginJsonStorages.Values)
298298
{
299-
savable?.Save();
299+
savable.Save();
300300
}
301301
}
302302

@@ -514,7 +514,7 @@ public void SavePluginCaches()
514514
{
515515
foreach (var savable in _pluginBinaryStorages.Values)
516516
{
517-
savable?.Save();
517+
savable.Save();
518518
}
519519
}
520520

0 commit comments

Comments
 (0)