From b02194ca6aa90a5c976146632ef44e5b195a610e Mon Sep 17 00:00:00 2001 From: goat Date: Thu, 26 Dec 2024 13:09:06 +0100 Subject: [PATCH] DalamudInterface doesn't need DataManager --- Dalamud/Interface/Internal/DalamudInterface.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dalamud/Interface/Internal/DalamudInterface.cs b/Dalamud/Interface/Internal/DalamudInterface.cs index 0aa10f514..d432d9d4c 100644 --- a/Dalamud/Interface/Internal/DalamudInterface.cs +++ b/Dalamud/Interface/Internal/DalamudInterface.cs @@ -57,7 +57,6 @@ internal class DalamudInterface : IInternalDisposableService private readonly Dalamud dalamud; private readonly DalamudConfiguration configuration; private readonly InterfaceManager interfaceManager; - private readonly DataManager dataManager; private readonly ChangelogWindow changelogWindow; private readonly ColorDemoWindow colorDemoWindow; @@ -99,7 +98,6 @@ internal class DalamudInterface : IInternalDisposableService DalamudConfiguration configuration, FontAtlasFactory fontAtlasFactory, InterfaceManager interfaceManager, - DataManager dataManager, PluginImageCache pluginImageCache, DalamudAssetManager dalamudAssetManager, Game.Framework framework, @@ -112,7 +110,6 @@ internal class DalamudInterface : IInternalDisposableService this.dalamud = dalamud; this.configuration = configuration; this.interfaceManager = interfaceManager; - this.dataManager = dataManager; this.WindowSystem = new WindowSystem("DalamudCore");