Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tnowacki committed Feb 13, 2025
1 parent 2f16b4b commit fa9ab1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ impl<'a> ChildObjectStore<'a> {
));
};

let mut value = if let Some(ChildObject { ty, value, .. }) = self.store.remove(&child) {
let mut value = if let Some(ChildObject { value, .. }) = self.store.remove(&child) {
if value.exists()? {
return Err(
PartialVMError::new(StatusCode::UNKNOWN_INVARIANT_VIOLATION_ERROR)
Expand Down

0 comments on commit fa9ab1c

Please sign in to comment.