diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-29 17:12:55 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-30 23:34:40 +0100 |
commit | 314a687eeb2193ffa32bb21b41b28d2ba1854160 (patch) | |
tree | 7dfcccc6f24992cf96c41303742f5a1baadbe195 /Userland/Services/ImageDecoder/ClientConnection.h | |
parent | 8c8bf9433f95e5ec18c559a52220a07c42700fdf (diff) | |
download | serenity-314a687eeb2193ffa32bb21b41b28d2ba1854160.zip |
ImageDecoder: Remove unnecessary client map
ImageDecoder processes only serve a single client, so we don't need to
keep a map of them.
Diffstat (limited to 'Userland/Services/ImageDecoder/ClientConnection.h')
-rw-r--r-- | Userland/Services/ImageDecoder/ClientConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/ImageDecoder/ClientConnection.h b/Userland/Services/ImageDecoder/ClientConnection.h index 3c1efc7512..01cb037c7a 100644 --- a/Userland/Services/ImageDecoder/ClientConnection.h +++ b/Userland/Services/ImageDecoder/ClientConnection.h @@ -25,7 +25,7 @@ public: virtual void die() override; private: - explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>, int client_id); + explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>); virtual Messages::ImageDecoderServer::DecodeImageResponse decode_image(Core::AnonymousBuffer const&) override; }; |