diff --git a/Userland/Libraries/LibWeb/Page/Page.cpp b/Userland/Libraries/LibWeb/Page/Page.cpp index 581f7ba254..313b5c2d29 100644 --- a/Userland/Libraries/LibWeb/Page/Page.cpp +++ b/Userland/Libraries/LibWeb/Page/Page.cpp @@ -47,10 +47,6 @@ void Page::load(const AK::URL& url) (void)top_level_traversable()->navigate(url, *top_level_traversable()->active_document()); } -void Page::load(LoadRequest&) -{ -} - void Page::load_html(StringView html, const AK::URL& url) { (void)top_level_traversable()->navigate(url, *top_level_traversable()->active_document(), String::from_utf8(html).release_value_but_fixme_should_propagate_errors()); diff --git a/Userland/Libraries/LibWeb/Page/Page.h b/Userland/Libraries/LibWeb/Page/Page.h index 2d6878414a..c13f2c7b91 100644 --- a/Userland/Libraries/LibWeb/Page/Page.h +++ b/Userland/Libraries/LibWeb/Page/Page.h @@ -59,7 +59,6 @@ public: void set_focused_browsing_context(Badge, HTML::BrowsingContext&); void load(const AK::URL&); - void load(LoadRequest&); void load_html(StringView, const AK::URL&);