1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:44:58 +00:00

AK: Remove unused JsonValue <=> IPv4Address conversion code

This removes code that isn't used anywhere.
This commit is contained in:
Gunnar Beutner 2021-06-03 12:56:32 +02:00 committed by GitHub
parent 06df26da67
commit 48da8a568d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 14 deletions

View file

@ -181,11 +181,6 @@ JsonValue::JsonValue(const String& value)
}
}
JsonValue::JsonValue(const IPv4Address& value)
: JsonValue(value.to_string())
{
}
JsonValue::JsonValue(const JsonObject& value)
: m_type(Type::Object)
{