diff --git a/Dalamud/Interface/Utility/ImGuiHelpers.cs b/Dalamud/Interface/Utility/ImGuiHelpers.cs
index 8218cab4c..27cb3596c 100644
--- a/Dalamud/Interface/Utility/ImGuiHelpers.cs
+++ b/Dalamud/Interface/Utility/ImGuiHelpers.cs
@@ -241,20 +241,6 @@ public static partial class ImGuiHelpers
[Obsolete("Use ImGui.TextWrapped. It's safe now.", true)]
public static void SafeTextWrapped(ImU8String text) => ImGui.TextWrapped(text);
- ///
- /// Write colored, unformatted text.
- ///
- /// The color of the text.
- /// The text to write.
- [Obsolete("Use ImGui.TextColored. It's safe now.", true)]
- public static void SafeTextColored(Vector4 color, ImU8String text)
- {
- using (ImRaii.PushColor(ImGuiCol.Text, color))
- {
- ImGui.Text(text);
- }
- }
-
///
/// Write colored, unformatted text wrapped.
///