1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00

LibJS: Remove debug spam in Object::get()

This commit is contained in:
Andreas Kling 2020-03-15 17:20:12 +01:00
parent 0fd5f0e4bd
commit bb57bc1b42

View file

@ -46,7 +46,6 @@ Value Object::get(String property_name) const
{
const Object* object = this;
while (object) {
dbg() << "Object::get() trying '" << property_name << "' in " << object->class_name();
auto value = object->m_properties.get(property_name);
if (value.has_value())
return value.value();