From db10f1c5a4b0fc945be9d89135425b76769a4c65 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 5 Jan 2026 07:44:14 -0500 Subject: [PATCH] chore: remove unused ClientApp / StaticApp daemonMainLoopStatic method --- src/lib/deskflow/ClientApp.cpp | 5 ----- src/lib/deskflow/ServerApp.cpp | 5 ----- 2 files changed, 10 deletions(-) diff --git a/src/lib/deskflow/ClientApp.cpp b/src/lib/deskflow/ClientApp.cpp index 200a1e2d2..ca4423d06 100644 --- a/src/lib/deskflow/ClientApp.cpp +++ b/src/lib/deskflow/ClientApp.cpp @@ -335,11 +335,6 @@ int ClientApp::mainLoop() return s_exitSuccess; } -static int daemonMainLoopStatic() -{ - return ClientApp::instance().daemonMainLoop(0, nullptr); -} - int ClientApp::start() { initApp(); diff --git a/src/lib/deskflow/ServerApp.cpp b/src/lib/deskflow/ServerApp.cpp index f57f0abbf..3d9f57f98 100644 --- a/src/lib/deskflow/ServerApp.cpp +++ b/src/lib/deskflow/ServerApp.cpp @@ -608,11 +608,6 @@ int ServerApp::runInner(StartupFunc startup) return result; } -int daemonMainLoopStatic() -{ - return ServerApp::instance().daemonMainLoop(0, nullptr); -} - int ServerApp::start() { initApp();