mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
misc: chore: Replace additional instances of Gommon ForEach with 'foreach' statements
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
using DynamicData;
|
||||
using DynamicData.Kernel;
|
||||
using Gommon;
|
||||
using LibHac;
|
||||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
@@ -1079,8 +1078,8 @@ namespace Ryujinx.UI.App.Common
|
||||
}
|
||||
}
|
||||
|
||||
titleIdsToSave.ForEach(titleId => SaveTitleUpdatesForGame(titleId));
|
||||
titleIdsToRefresh.ForEach(titleId => RefreshApplicationInfo(titleId));
|
||||
foreach (var titleId in titleIdsToSave) SaveTitleUpdatesForGame(titleId);
|
||||
foreach (var titleId in titleIdsToRefresh) RefreshApplicationInfo(titleId);
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user