From 7812b3c1303077c7280132f10449a048f08ea7e7 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 19 Oct 2022 19:43:37 +0200 Subject: [PATCH] WebDriver: Remove unused Session::get_window_handles() With all the implementations being in the Session class, there should be no reason to expose this to the outside world anyway. --- Userland/Services/WebDriver/Session.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Services/WebDriver/Session.h b/Userland/Services/WebDriver/Session.h index 2f09319fbf..be8c669243 100644 --- a/Userland/Services/WebDriver/Session.h +++ b/Userland/Services/WebDriver/Session.h @@ -33,7 +33,6 @@ public: i32 id; }; - HashMap>& get_window_handles() { return m_windows; } Optional get_window_object() { return m_windows.get(m_current_window_handle); } String const& current_window_handle() { return m_current_window_handle; }