summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDesktop/Launcher.cpp
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-06-23 17:00:38 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-24 00:38:58 +0200
commitac650d2362488029258f92d9c773d51a115695d6 (patch)
tree9d8925d211dfd54183ec1415305bf95fa3d52e69 /Userland/Libraries/LibDesktop/Launcher.cpp
parent62f9377656a18bcca1b1616f43dc3ba85dedd8c0 (diff)
downloadserenity-ac650d2362488029258f92d9c773d51a115695d6.zip
Userland: Remove dummy IPC methods
They're not used anywhere and are unnecessary boilerplate code. So let's remove them and update IPCCompiler to allow for empty endpoint declarations.
Diffstat (limited to 'Userland/Libraries/LibDesktop/Launcher.cpp')
-rw-r--r--Userland/Libraries/LibDesktop/Launcher.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibDesktop/Launcher.cpp b/Userland/Libraries/LibDesktop/Launcher.cpp
index 3ab43c6020..89953ebe30 100644
--- a/Userland/Libraries/LibDesktop/Launcher.cpp
+++ b/Userland/Libraries/LibDesktop/Launcher.cpp
@@ -43,7 +43,6 @@ private:
: IPC::ServerConnection<LaunchClientEndpoint, LaunchServerEndpoint>(*this, "/tmp/portal/launch")
{
}
- virtual void dummy() override { }
};
static LaunchServerConnection& connection()