diff --git a/Dalamud/Game/Text/SeStringHandling/SeStringManager.cs b/Dalamud/Game/Text/SeStringHandling/SeStringManager.cs
deleted file mode 100644
index f0b38d429..000000000
--- a/Dalamud/Game/Text/SeStringHandling/SeStringManager.cs
+++ /dev/null
@@ -1,111 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-using Dalamud.IoC;
-using Dalamud.IoC.Internal;
-using Lumina.Excel.GeneratedSheets;
-
-namespace Dalamud.Game.Text.SeStringHandling;
-
-///
-/// This class facilitates creating new SeStrings and breaking down existing ones into their individual payload components.
-///
-[PluginInterface]
-[InterfaceVersion("1.0")]
-[ServiceManager.BlockingEarlyLoadedService]
-[Obsolete("This class is obsolete. Please use the static methods on SeString instead.")]
-public sealed class SeStringManager : IServiceType
-{
- [ServiceManager.ServiceConstructor]
- private SeStringManager()
- {
- }
-
- ///
- /// Parse a binary game message into an SeString.
- ///
- /// Pointer to the string's data in memory.
- /// Length of the string's data in memory.
- /// An SeString containing parsed Payload objects for each payload in the data.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public unsafe SeString Parse(byte* ptr, int len) => SeString.Parse(ptr, len);
-
- ///
- /// Parse a binary game message into an SeString.
- ///
- /// Binary message payload data in SE's internal format.
- /// An SeString containing parsed Payload objects for each payload in the data.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public unsafe SeString Parse(ReadOnlySpan data) => SeString.Parse(data);
-
- ///
- /// Parse a binary game message into an SeString.
- ///
- /// Binary message payload data in SE's internal format.
- /// An SeString containing parsed Payload objects for each payload in the data.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString Parse(byte[] bytes) => SeString.Parse(new ReadOnlySpan(bytes));
-
- ///
- /// Creates an SeString representing an entire Payload chain that can be used to link an item in the chat log.
- ///
- /// The id of the item to link.
- /// Whether to link the high-quality variant of the item.
- /// An optional name override to display, instead of the actual item name.
- /// An SeString containing all the payloads necessary to display an item link in the chat log.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString CreateItemLink(uint itemId, bool isHQ, string displayNameOverride = null) => SeString.CreateItemLink(itemId, isHQ, displayNameOverride);
-
- ///
- /// Creates an SeString representing an entire Payload chain that can be used to link an item in the chat log.
- ///
- /// The Lumina Item to link.
- /// Whether to link the high-quality variant of the item.
- /// An optional name override to display, instead of the actual item name.
- /// An SeString containing all the payloads necessary to display an item link in the chat log.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString CreateItemLink(Item item, bool isHQ, string displayNameOverride = null) => SeString.CreateItemLink(item, isHQ, displayNameOverride);
-
- ///
- /// Creates an SeString representing an entire Payload chain that can be used to link a map position in the chat log.
- ///
- /// The id of the TerritoryType for this map link.
- /// The id of the Map for this map link.
- /// The raw x-coordinate for this link.
- /// The raw y-coordinate for this link..
- /// An SeString containing all of the payloads necessary to display a map link in the chat log.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString CreateMapLink(uint territoryId, uint mapId, int rawX, int rawY) =>
- SeString.CreateMapLink(territoryId, mapId, rawX, rawY);
-
- ///
- /// Creates an SeString representing an entire Payload chain that can be used to link a map position in the chat log.
- ///
- /// The id of the TerritoryType for this map link.
- /// The id of the Map for this map link.
- /// The human-readable x-coordinate for this link.
- /// The human-readable y-coordinate for this link.
- /// An optional offset to account for rounding and truncation errors; it is best to leave this untouched in most cases.
- /// An SeString containing all of the payloads necessary to display a map link in the chat log.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString CreateMapLink(uint territoryId, uint mapId, float xCoord, float yCoord, float fudgeFactor = 0.05f) => SeString.CreateMapLink(territoryId, mapId, xCoord, yCoord, fudgeFactor);
-
- ///
- /// Creates an SeString representing an entire Payload chain that can be used to link a map position in the chat log, matching a specified zone name.
- ///
- /// The name of the location for this link. This should be exactly the name as seen in a displayed map link in-game for the same zone.
- /// The human-readable x-coordinate for this link.
- /// The human-readable y-coordinate for this link.
- /// An optional offset to account for rounding and truncation errors; it is best to leave this untouched in most cases.
- /// An SeString containing all of the payloads necessary to display a map link in the chat log.
- [Obsolete("This method is obsolete. Please use the static methods on SeString instead.", true)]
- public SeString CreateMapLink(string placeName, float xCoord, float yCoord, float fudgeFactor = 0.05f) => SeString.CreateMapLink(placeName, xCoord, yCoord, fudgeFactor);
-
- ///
- /// Creates a list of Payloads necessary to display the arrow link marker icon in chat
- /// with the appropriate glow and coloring.
- ///
- /// A list of all the payloads required to insert the link marker.
- [Obsolete("This data is obsolete. Please use the static version on SeString instead.", true)]
- public List TextArrowPayloads() => new(SeString.TextArrowPayloads);
-}
diff --git a/Dalamud/Memory/MemoryHelper.cs b/Dalamud/Memory/MemoryHelper.cs
index 5b640f64c..3ceecf6a6 100644
--- a/Dalamud/Memory/MemoryHelper.cs
+++ b/Dalamud/Memory/MemoryHelper.cs
@@ -167,7 +167,7 @@ public static unsafe class MemoryHelper
/// Read a UTF-8 encoded string from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The read in string.
@@ -178,7 +178,7 @@ public static unsafe class MemoryHelper
/// Read a string with the given encoding from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The encoding to use to decode the string.
@@ -193,7 +193,7 @@ public static unsafe class MemoryHelper
/// Read a UTF-8 encoded string from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The maximum length of the string.
@@ -205,7 +205,7 @@ public static unsafe class MemoryHelper
/// Read a string with the given encoding from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The encoding to use to decode the string.
@@ -284,7 +284,7 @@ public static unsafe class MemoryHelper
/// Read a UTF-8 encoded string from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The read in string.
@@ -295,7 +295,7 @@ public static unsafe class MemoryHelper
/// Read a string with the given encoding from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The encoding to use to decode the string.
@@ -307,7 +307,7 @@ public static unsafe class MemoryHelper
/// Read a UTF-8 encoded string from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The read in string.
@@ -319,7 +319,7 @@ public static unsafe class MemoryHelper
/// Read a string with the given encoding from a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to decode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to read from.
/// The encoding to use to decode the string.
@@ -426,7 +426,7 @@ public static unsafe class MemoryHelper
/// Write a UTF-8 encoded string to a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to encode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to write to.
/// The string to write.
@@ -437,7 +437,7 @@ public static unsafe class MemoryHelper
/// Write a string with the given encoding to a specified memory address.
///
///
- /// Attention! If this is an SeString, use the to encode or the applicable helper method.
+ /// Attention! If this is an , use the applicable helper methods to decode.
///
/// The memory address to write to.
/// The string to write.