Skip to content

Commit c56bc49

Browse files
committed
LibGUI: Remove left-over spammy debug print
1 parent 678555a commit c56bc49

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Userland/Libraries/LibGUI/GML/Parser.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ static ErrorOr<NonnullRefPtr<Object>> parse_gml_object(Queue<Token>& tokens)
2727
return tokens.head().m_type;
2828
};
2929

30-
while (peek() == Token::Type::Comment) {
31-
dbgln("found comment {}", tokens.head().m_view);
30+
while (peek() == Token::Type::Comment)
3231
TRY(object->add_property_child(TRY(Node::from_token<Comment>(tokens.dequeue()))));
33-
}
3432

3533
if (peek() != Token::Type::ClassMarker)
3634
return Error::from_string_literal("Expected class marker"sv);

0 commit comments

Comments
 (0)