Remove unused variables
This commit is contained in:
parent
2fb59b3ae6
commit
8aa3f31970
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ impl StoreIdAccessor for Aspect {
|
|||
&HDA::StoreIdAccess(accessor) => accessor.access(id),
|
||||
_ => unreachable!(),
|
||||
}
|
||||
.map_err(|e| ()) // TODO: We're losing the error cause here
|
||||
.map_err(|_| ()) // TODO: We're losing the error cause here
|
||||
})
|
||||
})
|
||||
})
|
||||
|
@ -121,7 +121,7 @@ impl NonMutableHookDataAccessor for Aspect {
|
|||
&HDA::NonMutableAccess(accessor) => accessor.access(fle),
|
||||
_ => unreachable!(),
|
||||
}
|
||||
.map_err(|e| ()) // TODO: We're losing the error cause here
|
||||
.map_err(|_| ()) // TODO: We're losing the error cause here
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue