Skip to content

Commit

Permalink
#612 Ensure all event aggregator methods are virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel Sampson committed Jun 28, 2019
1 parent fea2c68 commit 22babb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Caliburn.Micro.Core/EventAggregator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class EventAggregator : IEventAggregator
private readonly List<Handler> _handlers = new List<Handler>();

/// <inheritdoc />
public bool HandlerExistsFor(Type messageType)
public virtual bool HandlerExistsFor(Type messageType)
{
lock (_handlers)
{
Expand Down

0 comments on commit 22babb9

Please sign in to comment.