# HG changeset patch # User Kim Alvefur # Date 1640955672 -3600 # Node ID 1a4c6125393281f2434818492024a816de40219d # Parent 7d6497294d927a3790a3dc624f21c77268218092 util.stanza: Remove dead code These cases are caught by `check_text(v, ..)` above. Those errors do not contain the attribute however, which would have been nice. diff -r 7d6497294d92 -r 1a4c61253932 util/stanza.lua --- a/util/stanza.lua Fri Dec 31 14:00:28 2021 +0100 +++ b/util/stanza.lua Fri Dec 31 14:01:12 2021 +0100 @@ -70,11 +70,6 @@ for k, v in pairs(attr) do check_name(k, "attribute"); check_text(v, "attribute"); - if type(v) ~= "string" then - error("invalid attribute value for '"..k.."': expected string, got "..type(v)); - elseif not valid_utf8(v) then - error("invalid attribute value for '"..k.."': contains invalid utf8"); - end end end end