mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-12 16:50:44 -05:00
12 lines
229 B
C#
12 lines
229 B
C#
namespace LootDumpProcessor;
|
|
|
|
public class GCHandler
|
|
{
|
|
public static void Collect()
|
|
{
|
|
if (LootDumpProcessorContext.GetConfig().ManualGarbageCollectionCalls)
|
|
{
|
|
GC.Collect();
|
|
}
|
|
}
|
|
} |