Skip to content

Commit

Permalink
Merge pull request #633 from decanus/enhancement/remove-unused-variable
Browse files Browse the repository at this point in the history
enhancement/remove-unused-variable
  • Loading branch information
Stebalien committed May 20, 2020
2 parents 1fc99d5 + 5e9c86b commit 6a14d9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions subscriber_notifee.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ func (nn *subscriberNotifee) Disconnected(n network.Network, v network.Conn) {
}()
}

func (nn *subscriberNotifee) Connected(n network.Network, v network.Conn) {}
func (nn *subscriberNotifee) OpenedStream(n network.Network, v network.Stream) {}
func (nn *subscriberNotifee) ClosedStream(n network.Network, v network.Stream) {}
func (nn *subscriberNotifee) Listen(n network.Network, a ma.Multiaddr) {}
func (nn *subscriberNotifee) ListenClose(n network.Network, a ma.Multiaddr) {}
func (nn *subscriberNotifee) Connected(network.Network, network.Conn) {}
func (nn *subscriberNotifee) OpenedStream(network.Network, network.Stream) {}
func (nn *subscriberNotifee) ClosedStream(network.Network, network.Stream) {}
func (nn *subscriberNotifee) Listen(network.Network, ma.Multiaddr) {}
func (nn *subscriberNotifee) ListenClose(network.Network, ma.Multiaddr) {}

0 comments on commit 6a14d9c

Please sign in to comment.