From 47762a0ab66d26c0d7c3e4614c003f5e86c24d58 Mon Sep 17 00:00:00 2001 From: Moulins Date: Sun, 12 Oct 2025 13:22:38 +0200 Subject: [PATCH] chore: fix formatting --- core/src/avm1/activation.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/core/src/avm1/activation.rs b/core/src/avm1/activation.rs index f99090b57b7b..056df661fdc7 100644 --- a/core/src/avm1/activation.rs +++ b/core/src/avm1/activation.rs @@ -891,10 +891,7 @@ impl<'a, 'gc> Activation<'a, 'gc> { MovieClipReference::try_from_stage_object(self, bc).unwrap(), ); let name = func.name(); - let prototype = Object::new( - &self.context.strings, - Some(self.prototypes().object), - ); + let prototype = Object::new(&self.context.strings, Some(self.prototypes().object)); let func_obj = FunctionObject::bytecode(Gc::new(self.gc(), func)).build( &self.context.strings, self.prototypes().function,