remove unused methods on StaticNodeSet

these used to implement the NodeSet interface, but they've since been removed
from NodeSet
This commit is contained in:
Matt Jaffee 2017-04-14 16:14:05 -05:00 committed by Travis
parent 340cbc0cd0
commit 10a6cead17

View file

@ -264,18 +264,6 @@ func (s *StaticNodeSet) Open() error {
return nil
}
func (s *StaticNodeSet) SetMessageHandler(f func(proto.Message) error) {
return
}
func (s *StaticNodeSet) SetRemoteStateHandler(f func(proto.Message) error) {
return
}
func (s *StaticNodeSet) SetLocalStateSource(f func() (proto.Message, error)) {
return
}
func (s *StaticNodeSet) SendMessage(pb proto.Message, method string) error {
return nil
}