diff --git a/Dalamud/Interface/Internal/PluginCategoryManager.cs b/Dalamud/Interface/Internal/PluginCategoryManager.cs index b1c8204b2..818c2d333 100644 --- a/Dalamud/Interface/Internal/PluginCategoryManager.cs +++ b/Dalamud/Interface/Internal/PluginCategoryManager.cs @@ -60,12 +60,9 @@ namespace Dalamud.Interface.Internal /// key: PluginManifest.InternalName (lowercase, no spaces), /// value: list of category tags, . /// - private Dictionary mapPluginCategoryTagFallbacks = new(); - -#if DEBUG - // temp - hardcode some tag values for testing, idk what most of them does so it's probably not very accurate :D - private Dictionary mapPluginCategoryTagFallbacksHACK = new() + private Dictionary mapPluginCategoryTagFallbacks = new() { + // temporary for testing, should be removed when manifests are updated ["accuratecountdown"] = new string[] { "UI" }, ["adventurerinneed"] = new string[] { "UI" }, ["aethersense"] = new string[] { "Other" }, @@ -150,7 +147,6 @@ namespace Dalamud.Interface.Internal ["xivchat"] = new string[] { "social" }, ["xivcombo"] = new string[] { "jobs" }, }; -#endif // DEBUG /// /// Type of category group. @@ -383,13 +379,6 @@ namespace Dalamud.Interface.Internal return fallbackTags; } -#if DEBUG - if (this.mapPluginCategoryTagFallbacksHACK.TryGetValue(nameKey, out var dummyTags)) - { - return dummyTags; - } -#endif // DEBUG - return null; }