Removed unused injections from controllers

This commit is contained in:
Chomp
2025-07-04 09:24:06 +01:00
parent c8b8669546
commit a337b3c4e9
7 changed files with 2 additions and 16 deletions
@@ -5,7 +5,6 @@ using SPTarkov.Server.Core.Models.Spt.Config;
using SPTarkov.Server.Core.Models.Utils;
using SPTarkov.Server.Core.Servers;
using SPTarkov.Server.Core.Services;
using SPTarkov.Server.Core.Utils.Cloners;
using static SPTarkov.Server.Core.Services.MatchLocationService;
namespace SPTarkov.Server.Core.Controllers;
@@ -17,8 +16,7 @@ public class MatchController(
ConfigServer _configServer,
LocationLifecycleService _locationLifecycleService,
ProfileActivityService _profileActivityService,
WeatherHelper _weatherHelper,
ICloner _cloner
WeatherHelper _weatherHelper
)
{
protected readonly MatchConfig _matchConfig = _configServer.GetConfig<MatchConfig>();