LibCore: Remove unused ThreadedPromise constructor

This commit is contained in:
Andreas Kling 2025-08-10 16:28:39 +02:00 committed by Andreas Kling
commit cfcb63239d
Notes: github-actions[bot] 2025-08-11 14:57:49 +00:00

View file

@ -179,10 +179,6 @@ private:
}
ThreadedPromise() = default;
ThreadedPromise(EventReceiver* parent)
: EventReceiver(parent)
{
}
Function<ErrorOr<void>(ResultType&&)> m_resolution_handler;
Function<void(ErrorType&&)> m_rejection_handler;