From 02f7e2aedc937e1a2238d20718846f4b554bb3dd Mon Sep 17 00:00:00 2001 From: Mark Gross Date: Sat, 23 Nov 2024 17:23:01 -0800 Subject: [PATCH] Fix line formatting again --- .../ExceptionProcessorInterceptor.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/EntityFramework.Exceptions.Common/ExceptionProcessorInterceptor.cs b/EntityFramework.Exceptions.Common/ExceptionProcessorInterceptor.cs index f6005a4..96a8895 100644 --- a/EntityFramework.Exceptions.Common/ExceptionProcessorInterceptor.cs +++ b/EntityFramework.Exceptions.Common/ExceptionProcessorInterceptor.cs @@ -31,8 +31,7 @@ public void SaveChangesFailed(DbContextErrorEventData eventData) } /// - public Task SaveChangesFailedAsync(DbContextErrorEventData eventData, - CancellationToken cancellationToken = new CancellationToken()) + public Task SaveChangesFailedAsync(DbContextErrorEventData eventData, CancellationToken cancellationToken = new CancellationToken()) { ProcessException(eventData.Exception, eventData.Context); return Task.CompletedTask;