[#254] innerring: Remove unused TimersHandlers() method from processors

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-04-14 14:22:23 +03:00
parent 8466894fdf
commit 0b42a00a60
8 changed files with 0 additions and 36 deletions

View file

@ -12,7 +12,6 @@ type (
ListenerNotificationHandlers() []event.NotificationHandlerInfo
ListenerNotaryParsers() []event.NotaryParserInfo
ListenerNotaryHandlers() []event.NotaryHandlerInfo
TimersHandlers() []event.NotificationHandlerInfo
}
)

View file

@ -106,8 +106,3 @@ func (ap *Processor) ListenerNotaryParsers() []event.NotaryParserInfo {
func (ap *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return nil
}
// TimersHandlers for the 'Timers' event producer.
func (ap *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}

View file

@ -130,11 +130,6 @@ func (ap *Processor) ListenerNotificationHandlers() []event.NotificationHandlerI
return nil
}
// TimersHandlers for the 'Timers' event producer.
func (ap *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}
// StartAuditHandler for the internal event producer.
func (ap *Processor) StartAuditHandler() event.Handler {
return ap.handleNewAuditRound

View file

@ -115,8 +115,3 @@ func (bp *Processor) ListenerNotaryParsers() []event.NotaryParserInfo {
func (bp *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return nil
}
// TimersHandlers for the 'Timers' event producer.
func (bp *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}

View file

@ -238,8 +238,3 @@ func (cp *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return hh
}
// TimersHandlers for the 'Timers' event producer.
func (cp *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}

View file

@ -226,8 +226,3 @@ func (np *Processor) ListenerNotaryParsers() []event.NotaryParserInfo {
func (np *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return nil
}
// TimersHandlers for the 'Timers' event producer.
func (np *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}

View file

@ -161,8 +161,3 @@ func (gp *Processor) ListenerNotaryParsers() []event.NotaryParserInfo {
func (gp *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return nil
}
// TimersHandlers for the 'Timers' event producer.
func (gp *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}

View file

@ -297,8 +297,3 @@ func (np *Processor) ListenerNotaryHandlers() []event.NotaryHandlerInfo {
return hh
}
// TimersHandlers for the 'Timers' event producer.
func (np *Processor) TimersHandlers() []event.NotificationHandlerInfo {
return nil
}