Remove unused ClearCompletionCallbacks method from WorkflowExecutionContext.

This commit is contained in:
Sipke Schoorstra 2025-12-29 20:06:27 +01:00
parent 4e9b6d0a01
commit 79a64e90fd
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -639,14 +639,6 @@ public partial class WorkflowExecutionContext : IExecutionContext
{
RemoveActivityExecutionContexts(x => x is { IsCompleted: true, ParentActivityExecutionContext: not null });
}
/// <summary>
/// Clears all activity completion callback entries from the workflow execution context.
/// </summary>
public void ClearCompletionCallbacks()
{
_completionCallbackEntries.Clear();
}
public IEnumerable<ActivityExecutionContext> GetActiveActivityExecutionContexts()
{