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

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

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);