cr feedback

This commit is contained in:
William Banfield
2021-08-18 09:01:23 -04:00
parent cecd5d8ab2
commit 885b78698c
6 changed files with 12 additions and 12 deletions
-3
View File
@@ -20,8 +20,6 @@ type Service struct {
eventSinks []EventSink
eventBus *types.EventBus
doneChan chan struct{}
}
// NewIndexerService returns a new service instance.
@@ -29,7 +27,6 @@ func NewIndexerService(es []EventSink, eventBus *types.EventBus) *Service {
is := &Service{eventSinks: es, eventBus: eventBus}
is.BaseService = *service.NewBaseService(nil, "IndexerService", is)
is.doneChan = make(chan struct{})
return is
}