From 79a64e90fdffd77437149aacbc1dabe5c96bf815 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Mon, 29 Dec 2025 20:06:27 +0100 Subject: [PATCH] Remove unused `ClearCompletionCallbacks` method from `WorkflowExecutionContext`. --- .../Contexts/WorkflowExecutionContext.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/modules/Elsa.Workflows.Core/Contexts/WorkflowExecutionContext.cs b/src/modules/Elsa.Workflows.Core/Contexts/WorkflowExecutionContext.cs index 56509f366..57b5fae04 100644 --- a/src/modules/Elsa.Workflows.Core/Contexts/WorkflowExecutionContext.cs +++ b/src/modules/Elsa.Workflows.Core/Contexts/WorkflowExecutionContext.cs @@ -639,14 +639,6 @@ public partial class WorkflowExecutionContext : IExecutionContext { RemoveActivityExecutionContexts(x => x is { IsCompleted: true, ParentActivityExecutionContext: not null }); } - - /// - /// Clears all activity completion callback entries from the workflow execution context. - /// - public void ClearCompletionCallbacks() - { - _completionCallbackEntries.Clear(); - } public IEnumerable GetActiveActivityExecutionContexts() {