From aa86b07d64fcfda5008ad7169b512f0c2d8b9ea3 Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Tue, 14 Oct 2025 08:50:28 +0100 Subject: [PATCH] make method internal --- Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs b/Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs index bcda3ed9..de6480f4 100644 --- a/Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs +++ b/Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs @@ -17,7 +17,7 @@ public class SubscriptionWorker internal readonly List CurrentSubscriptions = new(); - public Func, List, List> GetNewSubscriptions; + internal Func, List, List> GetNewSubscriptions; private readonly List EventHandlers;