From 5eb57fad6d7b1fcb08b623929bd23b5a1e6ce6ec Mon Sep 17 00:00:00 2001 From: CWX Date: Sun, 26 Jan 2025 16:49:16 +0000 Subject: [PATCH] remove unsued method and usings --- Libraries/Core/Services/ProfileFixerService.cs | 9 --------- Libraries/Core/Services/RaidWeatherService.cs | 2 -- 2 files changed, 11 deletions(-) diff --git a/Libraries/Core/Services/ProfileFixerService.cs b/Libraries/Core/Services/ProfileFixerService.cs index 616f685d..a16fe39f 100644 --- a/Libraries/Core/Services/ProfileFixerService.cs +++ b/Libraries/Core/Services/ProfileFixerService.cs @@ -93,15 +93,6 @@ public class ProfileFixerService( } } - /// - /// Find issues in the scav profile data that may cause issues - /// - /// profile to check and fix - public void CheckForAndFixScavProfileIssues(PmcData scavProfile) - { - return; - } - /// /// Attempt to fix common item issues that corrupt profiles /// diff --git a/Libraries/Core/Services/RaidWeatherService.cs b/Libraries/Core/Services/RaidWeatherService.cs index 73b4e0c4..bde35e25 100644 --- a/Libraries/Core/Services/RaidWeatherService.cs +++ b/Libraries/Core/Services/RaidWeatherService.cs @@ -12,8 +12,6 @@ namespace Core.Services; [Injectable(InjectionType.Singleton)] public class RaidWeatherService( - ISptLogger _logger, - DatabaseService _databaseService, TimeUtil _timeUtil, WeatherGenerator _weatherGenerator, SeasonalEventService _seasonalEventService,