Skip to content

Commit

Permalink
Remove unused field
Browse files Browse the repository at this point in the history
US592494
  • Loading branch information
douggish committed Sep 18, 2023
1 parent 1c352ff commit b89622c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions IO.Eventuate.Tram/Consumer/Kafka/SwimlaneBasedDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ namespace IO.Eventuate.Tram.Consumer.Kafka
{
public class SwimlaneBasedDispatcher
{
private readonly object _lockObject = new object();
private bool _dispatcherStopped;

private readonly ConcurrentDictionary<int, SwimlaneDispatcher> _map = new ConcurrentDictionary<int, SwimlaneDispatcher>();
private readonly ConcurrentDictionary<int, SwimlaneDispatcher> _map = new();
private readonly string _subscriberId;
private readonly ILoggerFactory _loggerFactory;
private readonly ILogger _logger;
Expand Down

0 comments on commit b89622c

Please sign in to comment.