chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
12 lines
233 B
C#
12 lines
233 B
C#
namespace LootDumpProcessor;
|
|
|
|
public static class GCHandler
|
|
{
|
|
public static void Collect()
|
|
{
|
|
if (LootDumpProcessorContext.GetConfig().ManualGarbageCollectionCalls)
|
|
{
|
|
GC.Collect();
|
|
}
|
|
}
|
|
} |