mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Remove more parallelization
This commit is contained in:
@@ -732,10 +732,10 @@ namespace SabreTools.Library.DatFiles
|
|||||||
watch.Stop();
|
watch.Stop();
|
||||||
|
|
||||||
watch.Start("Populating internal DAT");
|
watch.Start("Populating internal DAT");
|
||||||
Parallel.For(0, inputs.Count, Globals.ParallelOptions, i =>
|
for (int i = 0; i < inputs.Count; i++)
|
||||||
{
|
{
|
||||||
AddFromExisting(datFiles[i], true);
|
AddFromExisting(datFiles[i], true);
|
||||||
});
|
}
|
||||||
|
|
||||||
// Now that we have a merged DAT, filter it
|
// Now that we have a merged DAT, filter it
|
||||||
filter.FilterDatFile(this, false /* useTags */);
|
filter.FilterDatFile(this, false /* useTags */);
|
||||||
|
|||||||
Reference in New Issue
Block a user