From 9d07273d6c4c69199440dffe279918cd327762f7 Mon Sep 17 00:00:00 2001 From: Alexander Shabunevich Date: Wed, 23 Jan 2019 10:22:40 +0300 Subject: [PATCH] EventBus: InMemoryEventBusSubscriptionsManager: Typo while invoking event #866 --- .../EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs b/src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs index e789081f3..f07648460 100644 --- a/src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs +++ b/src/BuildingBlocks/EventBus/EventBus/InMemoryEventBusSubscriptionsManager.cs @@ -117,7 +117,7 @@ namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBus var handler = OnEventRemoved; if (handler != null) { - OnEventRemoved(this, eventName); + handler(this, eventName); } }