summaryrefslogtreecommitdiffstats
path: root/libimagstore
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-11-14 14:20:47 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-11-14 14:52:51 +0100
commitdab6ad0f2093b42627d1f0ff9f98a1ffcd170772 (patch)
tree0b6430e12bf9a6b82aedde01f826e3fe5bfde1bf /libimagstore
parent2a04da9b3fbaa02fe25b785064f2556a18825e20 (diff)
Use default parameters from underlying functions
Diffstat (limited to 'libimagstore')
-rw-r--r--libimagstore/src/store.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs
index 5885997d..eaacbd5f 100644
--- a/libimagstore/src/store.rs
+++ b/libimagstore/src/store.rs
@@ -1025,22 +1025,22 @@ impl EntryHeader {
#[inline]
pub fn insert(&mut self, spec: &str, v: Value) -> Result<bool> {
- self.insert_with_sep(spec, '.', v)
+ self.0.insert(spec, v)
}
#[inline]
pub fn set(&mut self, spec: &str, v: Value) -> Result<Option<Value>> {
- self.set_with_sep(spec, '.', v)
+ self.0.set(spec, v)
}
#[inline]
pub fn read(&self, spec: &str) -> Result<Option<Value>> {
- self.read_with_sep(spec, '.')
+ self.0.read(spec)
}
#[inline]
pub fn delete(&mut self, spec: &str) -> Result<Option<Value>> {
- self.delete_with_sep(spec, '.')
+ self.0.delete(spec)
}
}