Appease clippy

This commit is contained in:
Lord-McSweeney 2023-01-30 19:30:17 -08:00 committed by Nathan Adams
parent add115e97f
commit a6ea1ef4a7
1 changed files with 4 additions and 4 deletions

View File

@ -1080,7 +1080,7 @@ fn set_cache_as_bitmap<'gc>(
/// Stubs `opaqueBackground`'s getter. /// Stubs `opaqueBackground`'s getter.
pub fn opaque_background<'gc>( pub fn opaque_background<'gc>(
_activation: &mut Activation<'_, 'gc>, _activation: &mut Activation<'_, 'gc>,
this: Option<Object<'gc>>, _this: Option<Object<'gc>>,
_args: &[Value<'gc>], _args: &[Value<'gc>],
) -> Result<Value<'gc>, Error<'gc>> { ) -> Result<Value<'gc>, Error<'gc>> {
Ok(Value::Null) Ok(Value::Null)
@ -1088,9 +1088,9 @@ pub fn opaque_background<'gc>(
/// Stubs `opaqueBackground`'s setter. /// Stubs `opaqueBackground`'s setter.
pub fn set_opaque_background<'gc>( pub fn set_opaque_background<'gc>(
activation: &mut Activation<'_, 'gc>, _activation: &mut Activation<'_, 'gc>,
this: Option<Object<'gc>>, _this: Option<Object<'gc>>,
args: &[Value<'gc>], _args: &[Value<'gc>],
) -> Result<Value<'gc>, Error<'gc>> { ) -> Result<Value<'gc>, Error<'gc>> {
Ok(Value::Undefined) Ok(Value::Undefined)
} }