core: fix: Revert an accidental condition negation in AVM2 stub reporting

This commit is contained in:
TÖRÖK Attila 2024-09-06 12:41:27 +02:00 committed by Lord-McSweeney
parent 1cd3439018
commit b4c1f57f25
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ impl Definition {
) {
for class_trait in traits {
if !class_trait.name().namespace().is_public()
&& class_trait
&& !class_trait
.name()
.namespace()
.exact_version_match(avm2.as3_namespace)