1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

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.
This commit is contained in:
Linus Groh 2022-10-19 19:43:37 +02:00
parent 6eecdb6853
commit 7812b3c130

View file

@ -33,7 +33,6 @@ public:
i32 id;
};
HashMap<String, NonnullOwnPtr<Window>>& get_window_handles() { return m_windows; }
Optional<Window*> get_window_object() { return m_windows.get(m_current_window_handle); }
String const& current_window_handle() { return m_current_window_handle; }