LibCore: Remove LocalServer::on_ready_to_accept

This is never called in LocalServer and someone might accidentally use
it -- I did. :^)
This commit is contained in:
sin-ack 2021-12-15 22:11:49 +00:00 committed by Ali Mohammad Pur
parent dfdb52efa7
commit e0e8fd6384
Notes: sideshowbarker 2024-07-17 22:42:35 +09:00

View file

@ -23,7 +23,6 @@ public:
RefPtr<LocalSocket> accept();
Function<void(NonnullRefPtr<Core::LocalSocket>)> on_accept;
Function<void()> on_ready_to_accept;
private:
explicit LocalServer(Object* parent = nullptr);