Skip to content

Commit

Permalink
core: fix: Revert an accidental condition negation in AVM2 stub repor…
Browse files Browse the repository at this point in the history
…ting
  • Loading branch information
torokati44 authored and Lord-McSweeney committed Sep 6, 2024
1 parent 1cd3439 commit b4c1f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/avm2/specification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b4c1f57

Please sign in to comment.