avm2: Remove "Display object container has no child with name" warning

This commit is contained in:
Lord-McSweeney 2024-09-08 08:54:40 -07:00 committed by Lord-McSweeney
parent c9a994fb47
commit 0adbf65490
1 changed files with 0 additions and 1 deletions

View File

@ -178,7 +178,6 @@ pub fn get_child_by_name<'gc>(
if let Some(child) = dobj.child_by_name(&name, false) {
return Ok(child.object2());
} else {
tracing::warn!("Display object container has no child with name {}", name);
return Ok(Value::Null);
}
}