summaryrefslogtreecommitdiff
path: root/AK/JsonValue.cpp
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-06-03 12:56:32 +0200
committerGitHub <noreply@github.com>2021-06-03 11:56:32 +0100
commit48da8a568d80fe4a1bf72d4c3fdfe0f3ed5a8c84 (patch)
tree0a5d2948f44028c603c5937375cde0df227545c3 /AK/JsonValue.cpp
parent06df26da67a55cb8271fea5845e4cd2b2c63625e (diff)
downloadserenity-48da8a568d80fe4a1bf72d4c3fdfe0f3ed5a8c84.zip
AK: Remove unused JsonValue <=> IPv4Address conversion code
This removes code that isn't used anywhere.
Diffstat (limited to 'AK/JsonValue.cpp')
-rw-r--r--AK/JsonValue.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/AK/JsonValue.cpp b/AK/JsonValue.cpp
index b8df21f811..7f2dc7d99d 100644
--- a/AK/JsonValue.cpp
+++ b/AK/JsonValue.cpp
@@ -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)
{