From 3895301d0dc7cbb35e32485c8e758d948d108680 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 16:27:20 +0000 Subject: [PATCH] Remove redundant partial modifier after logging refactor --- .../EventSourcing/Consume/EventConsumerProcessor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerProcessor.cs b/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerProcessor.cs index fd9cdb645..7b6c84fd3 100644 --- a/backend/src/Squidex.Infrastructure/EventSourcing/Consume/EventConsumerProcessor.cs +++ b/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 +public class EventConsumerProcessor : IEventSubscriber { private readonly SimpleState state; private readonly IEventFormatter eventFormatter;