LibGUI: Remove left-over spammy debug print

This commit is contained in:
Idan Horowitz 2022-04-08 17:40:50 +03:00
commit c56bc49b70
Notes: sideshowbarker 2024-07-17 14:16:31 +09:00

View file

@ -27,10 +27,8 @@ static ErrorOr<NonnullRefPtr<Object>> parse_gml_object(Queue<Token>& tokens)
return tokens.head().m_type;
};
while (peek() == Token::Type::Comment) {
dbgln("found comment {}", tokens.head().m_view);
while (peek() == Token::Type::Comment)
TRY(object->add_property_child(TRY(Node::from_token<Comment>(tokens.dequeue()))));
}
if (peek() != Token::Type::ClassMarker)
return Error::from_string_literal("Expected class marker"sv);