Remove unnecessary conditional

This commit is contained in:
nnposter 2025-12-04 19:39:52 +00:00
parent 472b586767
commit df4896eadb

View file

@ -337,9 +337,7 @@ Helper = {
local printer = {}
for k, v in pairs(attrib) do
if ( ag:getAttributeValue(k) ) then
printer[v] = ag:getAttributeValue(k)
end
printer[v] = ag:getAttributeValue(k)
end
table.insert(printers, printer)
end