mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-14 16:37:07 +00:00
misc: chore: Replace additional instances of Gommon ForEach with 'foreach' statements
This commit is contained in:
parent
f9780b33bb
commit
6e8f7e7fcb
1 changed files with 2 additions and 3 deletions
|
|
@ -1,6 +1,5 @@
|
||||||
using DynamicData;
|
using DynamicData;
|
||||||
using DynamicData.Kernel;
|
using DynamicData.Kernel;
|
||||||
using Gommon;
|
|
||||||
using LibHac;
|
using LibHac;
|
||||||
using LibHac.Common;
|
using LibHac.Common;
|
||||||
using LibHac.Fs;
|
using LibHac.Fs;
|
||||||
|
|
@ -1079,8 +1078,8 @@ namespace Ryujinx.UI.App.Common
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
titleIdsToSave.ForEach(titleId => SaveTitleUpdatesForGame(titleId));
|
foreach (var titleId in titleIdsToSave) SaveTitleUpdatesForGame(titleId);
|
||||||
titleIdsToRefresh.ForEach(titleId => RefreshApplicationInfo(titleId));
|
foreach (var titleId in titleIdsToRefresh) RefreshApplicationInfo(titleId);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue