1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 20:14:57 +00:00

AK: Remove empty destructor from JsonParser.

This commit is contained in:
asynts 2020-09-07 13:30:40 +02:00 committed by Andreas Kling
parent 70dd97c46e
commit a7cbc7fcb2

View File

@ -26,8 +26,8 @@
#pragma once
#include <AK/JsonValue.h>
#include <AK/GenericLexer.h>
#include <AK/JsonValue.h>
namespace AK {
@ -37,9 +37,6 @@ public:
: GenericLexer(input)
{
}
~JsonParser()
{
}
Optional<JsonValue> parse();