Skip to content

Commit

Permalink
Set HandlesException back to static
Browse files Browse the repository at this point in the history
  • Loading branch information
laurynasr committed Oct 4, 2023
1 parent 969ab18 commit bc6eac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Correlate.Core/CorrelationManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private T Execute<T>(string? correlationId, Func<T> correlatedFunc, OnException?
}
}

private bool HandlesException<T>(OnException? onException, CorrelationContext correlationContext, Exception ex, out T result)
private static bool HandlesException<T>(OnException? onException, CorrelationContext correlationContext, Exception ex, out T result)
{
if (!ex.Data.Contains(CorrelateConstants.CorrelationIdKey))
{
Expand Down

0 comments on commit bc6eac8

Please sign in to comment.