Skip to content

Commit

Permalink
Remove gc calls (not needed)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcssov committed Aug 13, 2022
1 parent d2ce200 commit 75721d4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/IronyModManager.Services/GameIndexService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ await Task.Run(async () =>
finally
{
semaphore.Release();
GC.Collect();
}
});
await Task.WhenAll(tasks);
Expand Down Expand Up @@ -217,7 +216,6 @@ public virtual async Task<IIndexedDefinitions> LoadDefinitionsAsync(IIndexedDefi
finally
{
semaphore.Release();
GC.Collect();
}
return null;
}).ToList();
Expand Down

0 comments on commit 75721d4

Please sign in to comment.