DalamudInterface doesn't need DataManager

This commit is contained in:
goat 2024-12-26 13:09:06 +01:00
parent 776a838dbe
commit b02194ca6a

View file

@ -57,7 +57,6 @@ internal class DalamudInterface : IInternalDisposableService
private readonly Dalamud dalamud; private readonly Dalamud dalamud;
private readonly DalamudConfiguration configuration; private readonly DalamudConfiguration configuration;
private readonly InterfaceManager interfaceManager; private readonly InterfaceManager interfaceManager;
private readonly DataManager dataManager;
private readonly ChangelogWindow changelogWindow; private readonly ChangelogWindow changelogWindow;
private readonly ColorDemoWindow colorDemoWindow; private readonly ColorDemoWindow colorDemoWindow;
@ -99,7 +98,6 @@ internal class DalamudInterface : IInternalDisposableService
DalamudConfiguration configuration, DalamudConfiguration configuration,
FontAtlasFactory fontAtlasFactory, FontAtlasFactory fontAtlasFactory,
InterfaceManager interfaceManager, InterfaceManager interfaceManager,
DataManager dataManager,
PluginImageCache pluginImageCache, PluginImageCache pluginImageCache,
DalamudAssetManager dalamudAssetManager, DalamudAssetManager dalamudAssetManager,
Game.Framework framework, Game.Framework framework,
@ -112,7 +110,6 @@ internal class DalamudInterface : IInternalDisposableService
this.dalamud = dalamud; this.dalamud = dalamud;
this.configuration = configuration; this.configuration = configuration;
this.interfaceManager = interfaceManager; this.interfaceManager = interfaceManager;
this.dataManager = dataManager;
this.WindowSystem = new WindowSystem("DalamudCore"); this.WindowSystem = new WindowSystem("DalamudCore");