From d2fe6578791a2f51a460cc60ea832c1c64b023ba Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sat, 12 Aug 2023 16:52:35 +1200 Subject: [PATCH] AK: Remove unused URL::m_path member --- AK/URL.h | 1 - 1 file changed, 1 deletion(-) diff --git a/AK/URL.h b/AK/URL.h index bf7a636475..5894434e92 100644 --- a/AK/URL.h +++ b/AK/URL.h @@ -176,7 +176,6 @@ private: // A URL’s path is either a URL path segment or a list of zero or more URL path segments, usually identifying a location. It is initially « ». // A URL path segment is an ASCII string. It commonly refers to a directory or a file, but has no predefined meaning. - DeprecatedString m_path; Vector m_paths; // A URL’s query is either null or an ASCII string. It is initially null.