LibIPC: Stop sending client ID to clients

The client ID is not useful to normal clients anymore, so stop telling
everyone what their ID is.
This commit is contained in:
Andreas Kling 2021-02-01 11:26:41 +01:00
parent a5bbe3280d
commit 1ce03f4f34
Notes: sideshowbarker 2024-07-18 22:39:46 +09:00
29 changed files with 27 additions and 42 deletions

View file

@ -53,7 +53,7 @@ void ClientConnection::die()
OwnPtr<Messages::LanguageServer::GreetResponse> ClientConnection::handle(const Messages::LanguageServer::Greet&)
{
return make<Messages::LanguageServer::GreetResponse>(client_id());
return make<Messages::LanguageServer::GreetResponse>();
}
class DefaultDocumentClient final : public GUI::TextDocument::Client {