diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-08 17:40:50 +0300 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-08 19:19:37 +0300 |
commit | c56bc49b704ce18727eac3a0342931aff8437fb0 (patch) | |
tree | 86a0464bdda3ecb46fb3e1d8454c58994e5fe733 /Userland/Libraries/LibGUI/GML | |
parent | 678555af976d2449739686dc0122c59984e61dcf (diff) | |
download | serenity-c56bc49b704ce18727eac3a0342931aff8437fb0.zip |
LibGUI: Remove left-over spammy debug print
Diffstat (limited to 'Userland/Libraries/LibGUI/GML')
-rw-r--r-- | Userland/Libraries/LibGUI/GML/Parser.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/GML/Parser.cpp b/Userland/Libraries/LibGUI/GML/Parser.cpp index 69042f9892..e79eb39df0 100644 --- a/Userland/Libraries/LibGUI/GML/Parser.cpp +++ b/Userland/Libraries/LibGUI/GML/Parser.cpp @@ -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); |