LibWeb: Remove unnecessary return in ResolvedCSSStyleDeclaration

This commit is contained in:
networkException
2022-07-03 18:26:28 +02:00
committed by Linus Groh
parent 6e24d845e0
commit baac3ba60c

View File

@@ -420,7 +420,6 @@ Optional<StyleProperty> ResolvedCSSStyleDeclaration::property(PropertyID propert
.property_id = property_id,
.value = style->property(property_id),
};
return {};
}
auto& layout_node = *m_element->layout_node();