analyzer/protocol/http: remove unnecessary empty destructor

This commit is contained in:
Max Kellermann 2020-02-10 16:26:19 +01:00
parent d1dc70c90f
commit a8da8cb8e2

View file

@ -176,7 +176,6 @@ void HTTP_Entity::Deliver(int len, const char* data, int trailing_CRLF)
class HTTP_Entity::UncompressedOutput : public analyzer::OutputHandler {
public:
UncompressedOutput(HTTP_Entity* e) { entity = e; }
virtual ~UncompressedOutput() { }
virtual void DeliverStream(int len, const u_char* data, bool orig)
{
entity->DeliverBodyClear(len, (char*) data, false);