From c8eafd37000efea4421f871a82f4856525e8fdbe Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 16 Jun 2023 17:04:30 +0100 Subject: [PATCH] AK: Remove SourceGenerator::as_string() Turns out nobody uses this! --- AK/SourceGenerator.h | 1 - 1 file changed, 1 deletion(-) diff --git a/AK/SourceGenerator.h b/AK/SourceGenerator.h index fb25a230cd..16dd46f901 100644 --- a/AK/SourceGenerator.h +++ b/AK/SourceGenerator.h @@ -57,7 +57,6 @@ public: } StringView as_string_view() const { return m_builder.string_view(); } - DeprecatedString as_string() const { return m_builder.to_deprecated_string(); } void append(StringView pattern) {