0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 04:50:45 -05:00

remove unused event

This commit is contained in:
Cj 2025-01-02 02:35:20 -05:00
parent dca2d61edb
commit 6bce67b479

View File

@ -14,10 +14,6 @@ public class ReMapper
public static bool IsRunning { get; private set; } = false; public static bool IsRunning { get; private set; } = false;
public delegate void OnCompleteHandler();
public event OnCompleteHandler? OnComplete;
private static readonly Stopwatch Stopwatch = new(); private static readonly Stopwatch Stopwatch = new();
private RemapperSettings? Settings => DataProvider.Settings?.Remapper; private RemapperSettings? Settings => DataProvider.Settings?.Remapper;
@ -368,7 +364,6 @@ public class ReMapper
Module = null; Module = null;
IsRunning = false; IsRunning = false;
OnComplete?.Invoke();
} }
/// <summary> /// <summary>