Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public DomainEventHandlerResolver(Dictionary<String, String[]> eventHandlerConfi

this.DomainEventHandlers = new Dictionary<String, IDomainEventHandler>();

IEnumerable<String> distinctHandlers = eventHandlerConfiguration.Keys.Select(k => k);
IEnumerable<String> distinctHandlers = eventHandlerConfiguration.Keys;

foreach (String handlerTypeString in distinctHandlers)
{
Expand Down
2 changes: 1 addition & 1 deletion Shared.EventStore/SubscriptionWorker/SubscriptionWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public async Task StopAsync(CancellationToken cancellationToken)

this.IsRunning = false;

var temp = this.CurrentSubscriptions.Select(r => r).ToList();
var temp = this.CurrentSubscriptions.ToList();

for (Int32 i = 0; i < temp.Count; i++)
{
Expand Down
Loading