mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
LibGUI: Remove left-over spammy debug print
This commit is contained in:
parent
678555af97
commit
c56bc49b70
Notes:
sideshowbarker
2024-07-17 14:16:31 +09:00
Author: https://github.com/IdanHo
Commit: c56bc49b70
Pull-request: https://github.com/SerenityOS/serenity/pull/13572
Issue: https://github.com/SerenityOS/serenity/issues/13113
Reviewed-by: https://github.com/kleinesfilmroellchen ✅
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