diff options
Diffstat (limited to 'tvix/store/src/pathinfoservice')
-rw-r--r-- | tvix/store/src/pathinfoservice/memory.rs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tvix/store/src/pathinfoservice/memory.rs b/tvix/store/src/pathinfoservice/memory.rs index db31a2d7718c..4ac21883823b 100644 --- a/tvix/store/src/pathinfoservice/memory.rs +++ b/tvix/store/src/pathinfoservice/memory.rs @@ -8,18 +8,11 @@ use nix_compat::store_path::DIGEST_SIZE; use super::PathInfoService; +#[derive(Default)] pub struct MemoryPathInfoService { db: Arc<RwLock<HashMap<Vec<u8>, proto::PathInfo>>>, } -impl MemoryPathInfoService { - pub fn new() -> Self { - let db = Arc::new(RwLock::new(HashMap::default())); - - Self { db } - } -} - impl PathInfoService for MemoryPathInfoService { fn get( &self, |