Get rid of unused generic param

It makes it cumbersome to call and serves no purpose.
This commit is contained in:
Michal 'vorner' Vaner 2019-03-10 18:37:29 +01:00
parent 2ffafff929
commit b009542183
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ impl AtomicBucket {
}
/// Revert this bucket's statistics generator to the default stats.
pub fn unset_stats<F>(&self) {
pub fn unset_stat(&self) {
write_lock!(self.inner).stats = None
}