Browse Source
Remove redundant partial modifier after logging refactor
pull/1318/head
copilot-swe-agent[bot]
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerProcessor.cs
|
|
|
@ -13,7 +13,7 @@ using Squidex.Infrastructure.Tasks; |
|
|
|
|
|
|
|
namespace Squidex.Infrastructure.EventSourcing.Consume; |
|
|
|
|
|
|
|
public partial class EventConsumerProcessor : IEventSubscriber<ParsedEvents> |
|
|
|
public class EventConsumerProcessor : IEventSubscriber<ParsedEvents> |
|
|
|
{ |
|
|
|
private readonly SimpleState<EventConsumerState> state; |
|
|
|
private readonly IEventFormatter eventFormatter; |
|
|
|
|