summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/Object.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-03-12 17:29:37 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-12 17:29:37 +0100
commitef1e5db1d063f55e57b1d7623ea7154583fc95ad (patch)
treefb92514e07f4017cb899258137c817c07da9d5c5 /Userland/Libraries/LibCore/Object.cpp
parent423ed5339651a2646c64ee4fd7b3b32bb7f8c942 (diff)
downloadserenity-ef1e5db1d063f55e57b1d7623ea7154583fc95ad.zip
Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)
Good-bye LogStream. Long live AK::Format!
Diffstat (limited to 'Userland/Libraries/LibCore/Object.cpp')
-rw-r--r--Userland/Libraries/LibCore/Object.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibCore/Object.cpp b/Userland/Libraries/LibCore/Object.cpp
index 800f557384..854467a356 100644
--- a/Userland/Libraries/LibCore/Object.cpp
+++ b/Userland/Libraries/LibCore/Object.cpp
@@ -262,9 +262,4 @@ void Object::register_property(const String& name, Function<JsonValue()> getter,
m_properties.set(name, make<Property>(name, move(getter), move(setter)));
}
-const LogStream& operator<<(const LogStream& stream, const Object& object)
-{
- return stream << object.class_name() << '{' << &object << '}';
-}
-
}