From 1be798be493aca3c23aca4111ba84d4342959bbe Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+tobealive@users.noreply.github.com> Date: Mon, 22 May 2023 06:46:26 +0200 Subject: [PATCH] net.html: remove unnecessary comment (#18230) --- vlib/net/html/tag.v | 1 - 1 file changed, 1 deletion(-) diff --git a/vlib/net/html/tag.v b/vlib/net/html/tag.v index 61dcb530e6..c0df75b7e7 100644 --- a/vlib/net/html/tag.v +++ b/vlib/net/html/tag.v @@ -96,7 +96,6 @@ pub fn (tag &Tag) get_tags(name string) []&Tag { // get_tag_by_attribute retrieves the first found child tag in the tag that has the given attribute name. pub fn (tag &Tag) get_tag_by_attribute(name string) ?&Tag { - // mut res := &Tag{} for child in tag.children { if child.attributes[name] != '' { return child