LibCore: Remove an unused Promise constructor

This commit is contained in:
Andreas Kling 2025-08-10 16:02:30 +02:00 committed by Andreas Kling
commit 4d285d6dce
Notes: github-actions[bot] 2025-08-11 14:58:14 +00:00

View file

@ -165,10 +165,6 @@ private:
}
Promise() = default;
Promise(EventReceiver* parent)
: EventReceiver(parent)
{
}
Optional<ErrorOr<Result, ErrorType>> m_result_or_rejection;
};