replaced implementation of reset with call to set function
This commit is contained in:
parent
4cbd81ed20
commit
1c5cb7d21d
1 changed files with 1 additions and 4 deletions
|
@ -119,10 +119,7 @@ impl<'a> Counter<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn reset(&mut self) -> Result<()> {
|
pub fn reset(&mut self) -> Result<()> {
|
||||||
let mut header = self.fle.deref_mut().get_header_mut();
|
self.set(0)
|
||||||
header.set("counter.value", Value::Integer(0))
|
|
||||||
.map_err(|e| CE::new(CEK::StoreWriteError, Some(Box::new(e))))
|
|
||||||
.map(|_| ())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set(&mut self, v: i64) -> Result<()> {
|
pub fn set(&mut self, v: i64) -> Result<()> {
|
||||||
|
|
Loading…
Reference in a new issue