From 6f61649ac8d08fff85a99172afbf4cd852dda2e6 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 28 Jul 2022 16:51:25 +0200 Subject: Refactor to use `debug_assert` --- src/construct/html_flow.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/construct') diff --git a/src/construct/html_flow.rs b/src/construct/html_flow.rs index 238963d..e2b66e5 100644 --- a/src/construct/html_flow.rs +++ b/src/construct/html_flow.rs @@ -399,7 +399,6 @@ fn tag_name(tokenizer: &mut Tokenizer, mut info: Info) -> State { .serialize() .trim() .to_lowercase(); - println!("name: {:?}", name); if !slash && info.start_tag && HTML_RAW_NAMES.contains(&name.as_str()) { info.kind = Kind::Raw; -- cgit