1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.html: remove unnecessary comment (#18230)

This commit is contained in:
Turiiya 2023-05-22 06:46:26 +02:00 committed by GitHub
parent a10690b934
commit 1be798be49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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