Explorar el Código

LibCore: Remove LocalServer::on_ready_to_accept

This is never called in LocalServer and someone might accidentally use
it -- I did. :^)
sin-ack hace 3 años
padre
commit
e0e8fd6384
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  1. 0 1
      Userland/Libraries/LibCore/LocalServer.h

+ 0 - 1
Userland/Libraries/LibCore/LocalServer.h

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