Skip to content

Commit

Permalink
Remove PackageWrapper::next(). (#1664)
Browse files Browse the repository at this point in the history
  • Loading branch information
Barenboim authored Nov 29, 2024
1 parent a8ce324 commit e4203a1
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/protocol/PackageWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,12 @@ namespace protocol
class PackageWrapper : public ProtocolWrapper
{
private:
virtual ProtocolMessage *next_in(ProtocolMessage *message)
{
return this->next(message);
}

virtual ProtocolMessage *next_out(ProtocolMessage *message)
{
return this->next(message);
return NULL;
}

virtual ProtocolMessage *next(ProtocolMessage *message)
virtual ProtocolMessage *next_in(ProtocolMessage *message)
{
return NULL;
}
Expand Down

0 comments on commit e4203a1

Please sign in to comment.