From a78a4aeb882fe293b8dd850584649a5c86944d24 Mon Sep 17 00:00:00 2001 From: SIMRAN MAKHIJA Date: Thu, 14 Mar 2024 18:43:36 -0400 Subject: [PATCH] comment cleanup --- src/repository/namespace.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/repository/namespace.rs b/src/repository/namespace.rs index 1e533eb..32f4959 100644 --- a/src/repository/namespace.rs +++ b/src/repository/namespace.rs @@ -14,8 +14,6 @@ impl NamespaceRepository { } pub fn list_all_namespaces(&self) -> io::Result> { - // This function depends on the specific implementation of MyDB - // and whether it supports listing all keys in a column family. self.db .list_all_keys("NamespaceData") .map_err(|e| io::Error::new(io::ErrorKind::Other, e.to_string())) @@ -57,7 +55,5 @@ impl NamespaceRepository { } fn current_time() -> String { - // This function returns the current time as a string. - // It's a placeholder and should be replaced with your actual implementation. - "current_time".to_string() + "current_time".to_string() }