Clean up unused variables

This commit is contained in:
David Wendt 2020-02-21 14:30:14 -05:00
parent 8b56973d29
commit d19d9ef90e
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ impl<'gc> Property<'gc> {
} }
Property::Slot { slot_id, .. } => this Property::Slot { slot_id, .. } => this
.set_slot(*slot_id, new_value.into(), context.gc_context) .set_slot(*slot_id, new_value.into(), context.gc_context)
.map(|v| true), .map(|_v| true),
} }
} }