Forgot to remove debug msg

This commit is contained in:
Robert Jelic
2025-04-19 06:19:50 +02:00
parent 19bbfee017
commit a739df5a9f

View File

@@ -302,7 +302,6 @@ end
function Container:removeChild(child)
for i,v in ipairs(self._values.children) do
if v.get("id") == child.get("id") then
self.basalt.LOGGER.debug("Removing child: "..child:getType())
table.remove(self._values.children, i)
child.parent = nil
break