mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 18:07:35 +00:00
LibGUI: Remove left-over spammy debug print
This commit is contained in:
parent
678555af97
commit
c56bc49b70
1 changed files with 1 additions and 3 deletions
|
@ -27,10 +27,8 @@ static ErrorOr<NonnullRefPtr<Object>> parse_gml_object(Queue<Token>& tokens)
|
||||||
return tokens.head().m_type;
|
return tokens.head().m_type;
|
||||||
};
|
};
|
||||||
|
|
||||||
while (peek() == Token::Type::Comment) {
|
while (peek() == Token::Type::Comment)
|
||||||
dbgln("found comment {}", tokens.head().m_view);
|
|
||||||
TRY(object->add_property_child(TRY(Node::from_token<Comment>(tokens.dequeue()))));
|
TRY(object->add_property_child(TRY(Node::from_token<Comment>(tokens.dequeue()))));
|
||||||
}
|
|
||||||
|
|
||||||
if (peek() != Token::Type::ClassMarker)
|
if (peek() != Token::Type::ClassMarker)
|
||||||
return Error::from_string_literal("Expected class marker"sv);
|
return Error::from_string_literal("Expected class marker"sv);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue